zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Hotfix/Module/AI/AIDispatcherComponent.cs

11 lines
270 B
C#

using System.Collections.Generic;
namespace ET
{
public class AIDispatcherComponent: Entity
{
public static AIDispatcherComponent Instance;
public Dictionary<string, AAIHandler> AIHandlers = new Dictionary<string, AAIHandler>();
}
}