encompass-cs/encompass-cs/Entity.cs

15 lines
192 B
C#
Raw Normal View History

using System;
2019-06-13 02:51:36 +00:00
namespace Encompass
{
2019-06-14 05:15:15 +00:00
public struct Entity
2019-06-13 02:51:36 +00:00
{
2019-07-17 18:24:21 +00:00
public readonly Guid ID;
2019-06-13 02:51:36 +00:00
2019-07-17 18:24:21 +00:00
internal Entity(Guid id)
2019-06-16 01:05:56 +00:00
{
2019-07-17 18:24:21 +00:00
this.ID = id;
2019-06-13 02:51:36 +00:00
}
}
}