BITKit/Src/Core/ECS/Built-In/IdComponent.cs

15 lines
209 B
C#
Raw Normal View History

2024-07-29 14:56:29 +08:00
using System.Dynamic;
namespace BITKit.Entities
{
public interface IdComponent
{
ulong Id { get; set; }
}
public interface IdComponent_String
{
string Id { get; }
}
}