AIDispatcherComponent.cs 295 B

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