-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCliffwall.cpp
34 lines (30 loc) · 1.95 KB
/
Cliffwall.cpp
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
/*******************************************************************************
* Filename: Cliffwall.cpp *
* Author: Daniel Wilson *
* E-Mail: [email protected] *
* Date: 10 June 2017 *
* *
* Description: Provides the implementation of a Location derived class named *
* Cliffwall. The cliffwall a dead end in the game and is the used as a red *
* herring to throw the player off a bit. *
* *
*******************************************************************************/
#include "Location.hpp"
/*******************************************************************************
* Function: Cliffwall::Cliffwall *
* *
* Description: Initializes the Cabin to contain a proper description. *
* *
* Inputs: void *
* *
* Outputs: void *
*******************************************************************************/
Cliffwall::Cliffwall()
{
description = "A giant vertical cliff wall faces you. It must be more ";
description += "than two-hundred feet high! You think you spot a figure ";
description += "watching you from above, but it could just be your ";
description += "imagination.";
item = NO_ITEM;
locationType = LocationType::CLIFFWALL;
}