internal bool LoadAStar(List <AStarTile> data) { mDetour = new AStartDetour(); mDetour.Load(data); return(true); }
internal bool LoadNavMesh(byte[] data) { mDetour = new RecastDetour(); mDetour.Load(data); return(true); }