Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#ifndef EmptyTIle_h
2
#define EmptyTIle_h
3
4
#include "Tile.h"
5
6
7
class EmptyTIle : public Tile {
8
9
public:
10
11
virtual void reveal();
12
13
virtual void display();
14
};
15
16
#endif // EmptyTIle_h
17
18