AIDispatcherComponent.cs 328 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. [ComponentOf(typeof(Scene))]
  5. public class AIDispatcherComponent: Entity, IAwake, IDestroy, ILoad
  6. {
  7. public static AIDispatcherComponent Instance;
  8. public Dictionary<string, AAIHandler> AIHandlers = new Dictionary<string, AAIHandler>();
  9. }
  10. }