12 lines
181 B
C#
12 lines
181 B
C#
|
using Godot;
|
|||
|
|
|||
|
namespace BITKit;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ECS的Id组件,用于提供Id
|
|||
|
/// </summary>
|
|||
|
public partial class IdComponent:EntityComponent
|
|||
|
{
|
|||
|
[Export]
|
|||
|
public string Id;
|
|||
|
}
|