zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/Cache/PlayerInfoComponent.cs

10 lines
220 B
C#
Raw Normal View History

2021-06-29 11:28:15 +08:00
using System.Collections.Generic;
namespace ET
{
public class PlayerInfoComponent:Entity
{
public MultiDictionary<string, long, Entity> unitInfoDic = new MultiDictionary<string, long, Entity>();
}
}