-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pit.h
39 lines (26 loc) · 755 Bytes
/
Pit.h
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
/**************************************************
Project: The Tamer, the Arigamo and the Fuhai Gem
Task: Assignment 2 + 3
Author: Sean Lee
Purpose: Bottomless Pit Class Header File
The Header file for the Bottomless Pit class Hazard.
**************************************************/
#ifndef PIT_H
#define PIT_H
#include <string>
#include <sstream>
#include <vector>
#include "GameEnums.h"
#include "Hazard.h"
#include "Player.h"
using namespace std;
class Pit : public Hazard {
public:
// constructors and destructors
Pit();
Pit(string name, HazardType type, string hint, vector<string> description, bool roaming, bool conscious);
~Pit();
// hazard turn update methods
vector<string> updateInteraction(Player & player);
};
#endif