9 lines
181 B
C#
9 lines
181 B
C#
using Fantasy.Entitas;
|
|
using Fantasy.Network;
|
|
|
|
namespace NB.Gate;
|
|
|
|
public class GateUnitManageComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, GateUnit> Units = new();
|
|
} |