-
Notifications
You must be signed in to change notification settings - Fork 0
/
Trader.h
40 lines (27 loc) · 796 Bytes
/
Trader.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: Suspicious Trader Class Header File
The Header file for the Suspicious Trader class Hazard.
**************************************************/
#ifndef TRADER_H
#define TRADER_H
#include <string>
#include <sstream>
#include <vector>
#include "GameEnums.h"
#include "Hazard.h"
#include "Item.h"
#include "Player.h"
using namespace std;
class Trader : public Hazard {
public:
// constructors and destructors
Trader();
Trader(string name, HazardType type, string hint, vector<string> description, bool roaming, bool conscious);
~Trader();
// hazard turn update methods
vector<string> updateInteraction(Player& player);
};
#endif