Esempio n. 1
0
        public Tile(Location location)
        {
            Location = location;
            things = new List<Thing>();

            #if DEBUG_TILE
            if (location.Equals(DEBUG_LOCATION))
                debugEnable = true;
            #endif
        }
Esempio n. 2
0
        public Tile(Location location)
        {
            Location = location;
            things   = new List <Thing>();

#if DEBUG_TILE
            if (location.Equals(DEBUG_LOCATION))
            {
                debugEnable = true;
            }
#endif
        }