NoiseEngine/CubicNoise/Contracts/IParameterName.cs
2020-01-12 00:32:10 +01:00

13 lines
396 B
C#

namespace CubicNoise.Contracts
{
/// <summary>
/// An interface which gets used to provide arbitrary parameter names
/// to the general noise engine class. It is a way to abstract the
/// concrete (but to the general noise engine class unknown) parameters
/// for different noise generators.
/// </summary>
public interface IParameterName
{
}
}