BehaviorTreeLayout.cs 329 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BehaviorTree
  6. {
  7. class BehaviorTreeLayout
  8. {
  9. private TreeNodeViewModel root = null;
  10. public BehaviorTreeLayout(TreeNodeViewModel root)
  11. {
  12. this.root = root;
  13. }
  14. public void ExcuteLayout()
  15. {
  16. }
  17. }
  18. }