-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCabin.hpp
More file actions
52 lines (38 loc) · 1.14 KB
/
Cabin.hpp
File metadata and controls
52 lines (38 loc) · 1.14 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
* ** Author: Gavin Slusher
* ** Date: 6/2/2019
* ** Description: Cabin class specification file. A subclass of the Space
* ** class, it customized it's own layout by overriding the
* ** createSpace() method. There are multiple Cabin classes,
* ** but they are essentially the same class hardcoded with
* ** different MapObjects.
* ** *************************************************************************/
#ifndef CABIN_HPP
#define CABIN_HPP
#include "displayMenu.hpp"
#include "inputValidation.hpp"
//#include "Game.hpp"
#include "Space.hpp"
//class Game; //forward declaration
class Cabin: public Space
{
protected:
public:
Cabin(int, int, std::string);
void createSpace();
};
class Cabin2: public Space
{
protected:
public:
Cabin2(int, int, std::string);
void createSpace();
};
class Cabin3: public Space
{
protected:
public:
Cabin3(int, int, std::string);
void createSpace();
};
#endif