Files
2026-05-21 16:04:49 +02:00

9 lines
177 B
C#

using Unity.Mathematics;
namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IRoadFactory
{
void CreateRoad(int2 startTile, int2 endTile);
}
}