6352e8e319
all at once
13 lines
254 B
C++
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"},
|
|
};
|
|
|
|
}
|