19 lines
545 B
C#
19 lines
545 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using CubicNoise.Contracts;
|
|||
|
|
|||
|
namespace CubicNoise.Noisers
|
|||
|
{
|
|||
|
public class CubicNoiseIntParameters : IParameterName
|
|||
|
{
|
|||
|
public static readonly IParameterName OCTAVE = new CubicNoiseIntParameters();
|
|||
|
public static readonly IParameterName PERIOD_X = new CubicNoiseIntParameters();
|
|||
|
public static readonly IParameterName PERIOD_Y = new CubicNoiseIntParameters();
|
|||
|
|
|||
|
private CubicNoiseIntParameters()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|