Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
//
// Created by Afonso Silva on 18/02/2020.
//
#include "Character.h"
Character::Character(std::string _name,int _level, int _exp)
{
name = _name;
level = _level;
exp = _exp;
}
Character::~Character()
{
}
std::string Character::GetName(){return name;};
int Character::GetMaxHealth() {return maxHealth;};
int Character::GetLevel() {return level;};
int Character::GetExp() {return exp;};
int Character::GetExpTo() {return expTo;};