diff options
Diffstat (limited to 'piece.h')
-rw-r--r-- | piece.h | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -20,13 +20,13 @@ typedef struct class Piece { private: - string name; - int row; - int col; - int w; - int h; - char dir; - vector<POINT> haveBeen; + string name; + int row; + int col; + int w; + int h; + char dir; + vector<POINT> haveBeen; public: Piece(void); @@ -46,3 +46,4 @@ class Piece }; #endif + |