-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJunkpile.cpp
32 lines (28 loc) · 1.84 KB
/
Junkpile.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
/*******************************************************************************
* Filename: Junkpile.cpp *
* Author: Daniel Wilson *
* E-Mail: [email protected] *
* Date: 10 June 2017 *
* *
* Description: Provides the implementation of a Location derived class named *
* Junkpile. The Junkpile is where the player will find the kayak. *
* *
*******************************************************************************/
#include "Location.hpp"
/*******************************************************************************
* Function: Junkpile::Junkpile *
* *
* Description: Initializes the Junkpile to contain a proper description. *
* *
* Inputs: void *
* *
* Outputs: void *
*******************************************************************************/
Junkpile::Junkpile()
{
description = "A lifetime's worth of junk sits in a pile by the cabin. ";
description += "You wonder if any of this stuff could be useful, it looks ";
description += "as if it's been untouched for a long time.";
item = Item::KAYAK;
locationType = LocationType::JUNKPILE;
}