CTT/Server/Model/Game/Entity/Map/MapMonsterComponent.cs

9 lines
170 B
C#

using System.Collections.Generic;
namespace ET
{
public class MapMonsterComponent:Entity
{
public Dictionary<int, Unit> mapMonsterDic = new();
}
}