예제 #1
0
파일: World.cs 프로젝트: Foxion7/AI
 public void setPlayerRoute(Vector2D end)
 {
     if (Hero == null)
     {
         return;
     }
     Hero.Path = new Route(GraphUtil.AStar(Graph, Hero.Pos, end, GraphUtil.Manhatten).ToList());
 }