
Untitled
By: a guest on
Aug 15th, 2012 | syntax:
C++ | size: 0.30 KB | hits: 10 | expires: Never
#ifndef GAMEBOARD_H
#define GAMEBOARD_H
class gameboard
{
private:
static const int ROW = 10;
static const int COL = 10;
public:
gameboard();
void draw();
void show();
protected:
char board[ROW][COL];
};
#endif // GAMEBOARD_H