9 lines
131 B
C#
9 lines
131 B
C#
using UnityEngine;
|
|
|
|
namespace Generators
|
|
{
|
|
public interface IGenerator
|
|
{
|
|
double GetValue(Vector2 position);
|
|
}
|
|
} |