using System; using System.Collections.Generic; using System.Text; namespace CubicNoise { /// /// All implemented noise generators. /// public enum NoiseTypes { /// /// The UNKNOWN generator is a placeholder for empty values. You should not use it in production. It generates random numbers on every call. /// UNKNOWN = 0, /// /// This is the cubic noise generator by Job Talle, cf. https://jobtalle.com/cubic_noise.html and https://github.com/jobtalle. /// CUBIC_NOISE = 1_000, } }