13 lines
396 B
C#
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
|
|
{
|
|
}
|
|
}
|