zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/Map/MapMonsterComponent.cs

9 lines
170 B
C#
Executable File

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