Files
Fishing2Server/Entity/Gate/GateUnitManageComponent.cs
2025-08-07 09:16:23 +08:00

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();
}