修改协议工具

This commit is contained in:
2025-07-27 23:46:43 +08:00
parent 743c1d2baa
commit be33e12b35
112 changed files with 1021 additions and 1119 deletions

View File

@@ -1,8 +0,0 @@
using Fantasy.Entitas;
namespace NB.Game;
public class ItemComponent : Entity
{
}

View File

@@ -3,7 +3,7 @@
namespace NB;
/// <summary>
/// 挂这个 玩家Role创建时会自动添加此组件
/// 挂这个 玩家Unit创建时会自动添加此组件
/// </summary>
public class RoleComAttribute : BaseAttribute
{

View File

@@ -4,5 +4,8 @@ namespace NB;
public class RoleManagerComponent : Entity
{
/// <summary>
/// 游戏列表
/// </summary>
public readonly Dictionary<long, Role> Roles = new();
}