LAB: Review struct definitions in processroom

This commit is contained in:
Strangerke 2015-12-09 20:04:32 +01:00 committed by Willem Jan Palenstijn
parent 8e88d31025
commit b586f76f94

View File

@ -91,7 +91,7 @@ namespace Lab {
#pragma pack(push, 1)
#endif
typedef struct CloseData {
struct CloseData {
uint16 _x1, _y1, _x2, _y2;
int16 _closeUpType; // if > 0, an object. If < 0, an item
uint16 _depth; // Level of the closeup.
@ -99,12 +99,12 @@ typedef struct CloseData {
char *_message;
CloseData *_nextCloseUp;
CloseData *_subCloseUps;
} CloseData;
};
struct ViewData {
int16 *_condition;
char *_graphicName;
struct ViewData *_nextCondition;
ViewData *_nextCondition;
CloseDataPtr _closeUps;
};