This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
crystal-pokedex/PokeDexC++ GNU/Skill.h

22 lines
387 B
C++
Executable File

#ifndef SKILL_H
#define SKILL_H
class Skill
{
string name, type, descr;
int pwr, pp;
public:
Skill();
Skill ( string n, string t, string d, int pwr, int p );
Skill ( const Skill &newskill );
string getName() const;
string getType() const;
string getDescr() const;
int getPower() const;
int getPP() const;
};
#include "Skill.cpp"
#endif /* END SKILL_H */