-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.h
69 lines (63 loc) · 1.59 KB
/
User.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef USER_H
#define USER_H
#include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <cstdlib>
using namespace std;
class User {
string name;
int health; // Players body health
int money; // current amount of cash on player
int fuel; // fuel on the spaceship of player
int suitGrade; // what grade suit player has
string weapon[3][2]; // the weapons player has
int crew[2]; //crews player chose 2 only
int suitHealth; // The suits condition
int healthKits; // healing kit for health
bool translator; // alien communicaiton
int numPlanetsExplored;
int numSaved;
int numLost;
int numRepHabit;
int numRepInhabit;
int popLeft;
public:
User();
string getName();
void setName(string);
int getHealth();
void setHealth(int);
int getSuitHealth();
void setSuitHealth(int);
int getHealthKits();
void setHealthKits(int);
int getMoney();
void setMoney(int);
int getFuel();
void setFuel(int);
int getSuitGrade();
void setSuitGrade(int);
int getWeapon(int);
void setWeapon(int, string);
int getCrew(int);
void setCrew(int, int);
bool getTranslator();
void setTranslator(bool);
int getNumExplored();
void setNumExplored(int);
int getNumSaved();
void setNumSaved(int);
int getNumLost();
void setNumLost(int);
int getRepHabit();
void setRepHabit(int);
int getRepInhabit();
void setRepInhabit(int);
int getPopLeft();
void setPopLeft(int);
};
#endif