PathFindHelper.cs 252 B

12345678910111213
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace ET
  4. {
  5. public static class PathFindHelper
  6. {
  7. public static void PathFind(int mapId, Vector3 from, Vector3 to, List<Vector3> result)
  8. {
  9. }
  10. }
  11. }