inz-00/Assets/Generators/INoiseGenerator.cs
2019-07-27 22:40:42 +02:00

9 lines
131 B
C#

using UnityEngine;
namespace Generators
{
public interface IGenerator
{
double GetValue(Vector2 position);
}
}