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