using UnityEngine;

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