2019-12-08 15:00:36 +04:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-13 14:59:48 +03:00
|
|
|
//This library containing structure and array for map parts
|
|
|
|
|
2019-12-08 15:00:36 +04:00
|
|
|
struct MapPart {
|
|
|
|
RECT coords;
|
|
|
|
bool visible;
|
|
|
|
HDC picture;
|
|
|
|
int blocktype;
|
|
|
|
};
|
|
|
|
|
|
|
|
MapPart gettedMapParts[MAP_LENGHT + 1];
|