Esempio n. 1
0
        public void TestAltitudeDescriptor()
        {
            int[] testTiles = new int[] { 0x0, 0x4, 0x84, 0xB400 };

            for (int i = 0; i < testTiles.Length; i++)
            {
                AltitudeDescriptor ad = new AltitudeDescriptor(testTiles[i]);
                Trace.Write("Tile " + i + ": ");
                Trace.WriteLine(ad);
            }
        }
Esempio n. 2
0
 public ALTM()
     : base("ALTM")
 {
     AltitudeData = new AltitudeDescriptor[CityMap.TILES_PER_SIDE, CityMap.TILES_PER_SIDE];
 }