-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.hpp
39 lines (32 loc) · 809 Bytes
/
player.hpp
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
#ifndef PLAYER_HPP
#define PLAYER_HPP
#include <iostream>
#include <string>
#include <vector>
using std::vector;
using std::string;
class Player{
public:
Player();
bool hasConfidence();
void printSkillSet();
int getConfidence();
void addSkill(string skill);
void removeSkill(string skill);
void setConfidence();
bool searchSkill(string skill);
void loseConfidence(int number);
void gainConfidence(int number);
void getaDate();
void checkFutureDate();
void reduceMovementCount();
void showMovementCount();
int getMovement();
void dateCheck();
private:
int confidence;
int haveDate;
int movementCount;
vector<string> skillSet;
};
#endif