21 lines
342 B
C#
21 lines
342 B
C#
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct ResourceNode
|
|
{
|
|
public int Id;
|
|
|
|
public int DefinitionId;
|
|
|
|
public float3 Position;
|
|
|
|
public int2 Tile;
|
|
|
|
public Directions Orientation;
|
|
|
|
public int Elevation;
|
|
|
|
public bool CanBeDeleted;
|
|
}
|
|
} |