11 lines
156 B
C
11 lines
156 B
C
|
#pragma once
|
||
|
|
||
|
struct MapPart {
|
||
|
RECT coords;
|
||
|
bool visible;
|
||
|
HDC picture;
|
||
|
int blocktype;
|
||
|
};
|
||
|
|
||
|
MapPart gettedMapParts[MAP_LENGHT + 1];
|