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
#ifndef Character_hpp
#define Character_hpp
#include<string>
#include<iostream>
#include<vector>
#include<sstream>
#include <stdio.h>
#endif /* Character_hpp */
using namespace std;
class Character
{
private:
std::string userName;
int level;
int exp;
int expMax;
int hp;
int hpMax;
int mana;
int manaMax;
int damage;
int defence;
int gold;
//Function
void updateStats();
public:
Character(std::string userName);
virtual ~Character();
bool updateLevel();
const std::string getMenuBar();
const std::string toString();
};