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