Exemple #1
0
        public string ToSaveableString(int height, int dirs)
        {
            RawHotspot rawHotspot = ToRawHotspot(dirs);

            return(rawHotspot.ToString());
        }
Exemple #2
0
        public static Hotspot FromRawHotspot(RawHotspot rawHotspot, DirCount dirs)
        {
            int dirCount = (int)dirs;

            return(new Hotspot(rawHotspot.X, rawHotspot.Y, rawHotspot.Index % dirCount, rawHotspot.Index / dirCount));
        }