Files
Fishing2Server/Entity/Gate/GateUnitManageComponent.cs
2026-01-18 16:37:46 +08:00

10 lines
215 B
C#

using System.Collections.Generic;
using Fantasy.Entitas;
using Fantasy.Network;
namespace NB.Gate;
public class GateUnitManageComponent : Entity
{
public readonly Dictionary<long, GateUnit> Units = new();
}