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

13 lines
214 B
C#
Raw Normal View History

2024-07-29 14:56:29 +08:00
using System.Dynamic;
namespace BITKit.Entities
{
2025-02-24 23:02:43 +08:00
public class IdComponent
2024-07-29 14:56:29 +08:00
{
2025-02-24 23:02:43 +08:00
public int Id { get; set; }
public string Name { get; set; }
public string Group { get; set; }
2024-07-29 14:56:29 +08:00
}
}