using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BehaviorTree { class BehaviorTreeLayout { private TreeNodeViewModel root = null; public BehaviorTreeLayout(TreeNodeViewModel root) { this.root = root; } public void ExcuteLayout() { } } }