AIDispatcherComponent.cs 270 B

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