Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#ifndef Tile_h
2
#define Tile_h
3
4
#include "Widget.h"
5
#include "bool.h"
6
7
class GameGrid;
8
9
class Tile : public Widget {
10
11
public:
12
13
virtual bool reveal();
14
15
virtual void flag();
16
17
virtual void display();
18
19
public:
20
21
/**
22
* @element-type GameGrid
23
*/
24
GameGrid *myGameGrid;
25
};
26
27
#endif // Tile_h
28
29