12 lines
132 B
C#
12 lines
132 B
C#
|
namespace MoonTools.ECS;
|
|||
|
|
|||
|
public struct Entity
|
|||
|
{
|
|||
|
public int ID { get; }
|
|||
|
|
|||
|
internal Entity(int id)
|
|||
|
{
|
|||
|
ID = id;
|
|||
|
}
|
|||
|
}
|