]> Shamusworld >> Repos - warehouse-man-deluxe/blobdiff - src/gameboard.h
Added board titles.
[warehouse-man-deluxe] / src / gameboard.h
index 9f59480e961c7a42a632552f4aee66b01fbd1813..229feb7272c564b3769ca46fbe09fe873bd071d5 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __GAMEBOARD_H__
 #define __GAMEBOARD_H__
 
-enum { GTSpace=0x00, GTWall=0x01, GTBox=0x02, GTBoxSpot=0x04 };
+enum { GTSpace=0x00, GTWall=0x01, GTBox=0x02, GTBoxSpot=0x04, GTNull=0x08 };
 enum { PMInvalid, PMWalk, PMPush };
 
 struct UndoMove
@@ -37,6 +37,7 @@ class GameBoard
                int playerX, playerY;           // Player X/Y are zero-based
                int width, height;
                char * board;
+               const char * name;
 
        private:
                char * initialBoard;