-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCamp.hpp
More file actions
29 lines (22 loc) · 716 Bytes
/
Camp.hpp
File metadata and controls
29 lines (22 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
* ** Author: Gavin Slusher
* ** Date: 6/2/2019
* ** Description: Camp class implementation file. A subclass of the Space
* ** class, it customized it's own layout by overriding the
* ** createSpace() method.
* ** *************************************************************************/
#ifndef CAMP_HPP
#define CAMP_HPP
#include "displayMenu.hpp"
#include "inputValidation.hpp"
#include "Space.hpp"
//#include "Game.hpp"
//class Game; //forward declaration
class Camp: public Space
{
protected:
public:
Camp();
void createSpace();
};
#endif