8 lines
155 B
C#
8 lines
155 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace NB.Map;
|
|
|
|
public class MapUnitManageComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, MapUnit> Units = new();
|
|
} |