10 lines
215 B
C#
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();
|
|
} |