Handle refactor

This commit is contained in:
elasota
2019-12-29 23:14:37 -05:00
parent 9cf539eb52
commit fb105bd338
37 changed files with 365 additions and 240 deletions

View File

@@ -199,7 +199,9 @@ typedef struct
roomType rooms[1]; // 348 * nRooms
static const size_t kBinaryDataSize = 866;
} houseType, *housePtr, **houseHand; // total = 866 +
} houseType, *housePtr; // total = 866 +
typedef THandle<houseType> houseHand;
typedef struct
{
@@ -277,7 +279,10 @@ typedef struct
Boolean top;
Boolean right;
Boolean bottom;
} boundsType, *boundsPtr, **boundsHand;
} boundsType, *boundsPtr;
typedef THandle<boundsType> boundsHand;
typedef struct
{