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

15 lines
211 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
{
2024-08-07 16:48:16 +08:00
string DbId { get; }
2024-07-29 14:56:29 +08:00
}
}