17 lines
347 B
C#
17 lines
347 B
C#
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct RoadTileUpdatedSignal
|
|
{
|
|
public int2 Tile;
|
|
|
|
public bool RoadTileAdded;
|
|
|
|
public RoadTileUpdatedSignal(int2 tile, bool roadTileAdded)
|
|
{
|
|
Tile = tile;
|
|
RoadTileAdded = roadTileAdded;
|
|
}
|
|
}
|
|
} |