Ejemplo n.º 1
0
        public static MapSingleton Instance()
        {
            if (_instance == null)
            {
                _instance = new MapSingleton();
            }

            return(_instance);
        }
Ejemplo n.º 2
0
 public IEnumerable <uint> GetPath(uint from, uint to)
 {
     return(MapSingleton.Instance().GetPath(from, to));
 }
Ejemplo n.º 3
0
 public int GetDistance(uint from, uint to)
 {
     return(MapSingleton.Instance().GetDistance(from, to));
 }