src/map.h
branchcpp_gui
changeset 6303 84c215fc8eb8
parent 6298 c30fe89622df
child 6308 646711c5feaa
equal deleted inserted replaced
6302:bd80897189ba 6303:84c215fc8eb8
    26 	byte m4;
    26 	byte m4;
    27 	byte m5;
    27 	byte m5;
    28 	byte m6;
    28 	byte m6;
    29 };
    29 };
    30 
    30 
    31 extern Tile* _m;
    31 struct TileExtended {
       
    32 	byte m7;
       
    33 };
       
    34 
       
    35 extern Tile *_m;
       
    36 extern TileExtended *_me;
    32 
    37 
    33 void AllocateMap(uint size_x, uint size_y);
    38 void AllocateMap(uint size_x, uint size_y);
    34 
    39 
    35 /* binary logarithm of the map size, try to avoid using this one */
    40 /* binary logarithm of the map size, try to avoid using this one */
    36 static inline uint MapLogX()  { return _map_log_x; }
    41 static inline uint MapLogX()  { return _map_log_x; }