Select Git revision
player.h 341 B
#ifndef PLAYER_H
#define PLAYER_H
#include <string>
class Player
{
std::string name;
int pontszam = 0;
int sorszam;
public:
Player(std::string _nev, int _sorszam);
std::string get_name();
int get_pontszam();
void pontszam_novelo();
int get_sorszam();
~Player();
};
#endif // PLAYER_H