You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
530 B
16 lines
530 B
3 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class Cell: Entity, IAwake, IDestroy
|
||
|
{
|
||
|
// 处在这个cell的单位
|
||
|
public Dictionary<long, AOIEntity> AOIUnits = new Dictionary<long, AOIEntity>();
|
||
|
|
||
|
// 订阅了这个Cell的进入事件
|
||
|
public Dictionary<long, AOIEntity> SubsEnterEntities = new Dictionary<long, AOIEntity>();
|
||
|
|
||
|
// 订阅了这个Cell的退出事件
|
||
|
public Dictionary<long, AOIEntity> SubsLeaveEntities = new Dictionary<long, AOIEntity>();
|
||
|
}
|
||
|
}
|