-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharacter.cpp
More file actions
58 lines (45 loc) · 1001 Bytes
/
Copy pathCharacter.cpp
File metadata and controls
58 lines (45 loc) · 1001 Bytes
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
/*********************************************************************
** Program name: Project4
** Author: James Scanlon
** Date: March 3, 2019
** Description: Implementation of the Character class. Serves as a parent function for the character types to inherit from.
*********************************************************************/
#include <cstdlib>
#include "Character.hpp"
// default constructor
Character::Character(){
type = "none";
}
// get functions
int Character::getStrength(){
return strength;
}
int Character::getCurrentAttack(){
return currentAttack;
}
int Character::getCurrentDefend(){
return currentDefend;
}
int Character::getArmor()
{
return armor;
}
string Character::getType(){
return type;
}
bool Character::getSpecialMessage()
{
return specialMessage;
}
string Character::getName()
{
return name;
}
// Set functions
void Character::setName(string input)
{
name = input;
}
// destructor
Character::~Character(){
}