osb/source/core/StarPerlin.cpp
2023-06-20 14:33:09 +10:00

13 lines
254 B
C++

#include "StarPerlin.hpp"
namespace Star {
EnumMap<PerlinType> const PerlinTypeNames{
{PerlinType::Uninitialized, "uninitialized"},
{PerlinType::Perlin, "perlin"},
{PerlinType::Billow, "billow"},
{PerlinType::RidgedMulti, "ridgedMulti"},
};
}