FallSimulator/lib/MapPart.h
Андрей fbba67d8bc
Add files via upload
Edited main.cpp, Edited help and Added screenshots to help.
2019-12-13 14:59:48 +03:00

12 lines
219 B
C

#pragma once
//This library containing structure and array for map parts
struct MapPart {
RECT coords;
bool visible;
HDC picture;
int blocktype;
};
MapPart gettedMapParts[MAP_LENGHT + 1];