10 lines
220 B
C#
10 lines
220 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class PlayerInfoComponent:Entity
|
||
|
{
|
||
|
public MultiDictionary<string, long, Entity> unitInfoDic = new MultiDictionary<string, long, Entity>();
|
||
|
|
||
|
}
|
||
|
}
|