Esempio n. 1
0
 public cnt_Route(Form form, EditorScene editorScene) : base(form)
 {
     this.editorScene = editorScene;
     map         = new Map("test map", 11, 6);
     pathFinding = new PathFinding.PathFinding();
     pathFinding.SetMap(map);
     editorScene.SetPathfinding(pathFinding);
 }
Esempio n. 2
0
 public void SetPathfinding(PathFinding.PathFinding pathFinding)
 {
     this.pathFinding = pathFinding;
 }