ZoneNodeFactory.cs 590 B

1234567891011121314151617181920212223242526272829
  1. using CommonAI.Zone.ZoneEditor;
  2. using System;
  3. namespace CommonAIServer.Node
  4. {
  5. public class ZoneNodeFactory
  6. {
  7. public static ZoneNodeFactory Instance
  8. {
  9. get;
  10. private set;
  11. }
  12. static ZoneNodeFactory()
  13. {
  14. new ZoneNodeFactory();
  15. }
  16. public ZoneNodeFactory()
  17. {
  18. ZoneNodeFactory.Instance = this;
  19. }
  20. public virtual ZoneNode CreateZoneNode(EditorTemplates data_root, ZoneNodeConfig cfg)
  21. {
  22. return new ZoneNode(data_root, cfg);
  23. }
  24. }
  25. }