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