9 lines
170 B
C#
9 lines
170 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class MapMonsterComponent:Entity
|
|||
|
{
|
|||
|
public Dictionary<int, Unit> mapMonsterDic = new();
|
|||
|
}
|
|||
|
}
|