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