9 lines
177 B
C#
9 lines
177 B
C#
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IRoadFactory
|
|
{
|
|
void CreateRoad(int2 startTile, int2 endTile);
|
|
}
|
|
} |