NoiseEngine/CubicNoise/Contracts/IParameterName.cs

13 lines
396 B
C#
Raw Normal View History

2020-01-11 18:00:46 +00:00
namespace CubicNoise.Contracts
{
2020-01-11 23:32:10 +00:00
/// <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>
2020-01-11 18:00:46 +00:00
public interface IParameterName
{
}
}