Skip to content
Snippets Groups Projects
Select Git revision
  • 4c62d9c3cf501d1428305f53cb6f05dbb5d306e6
  • main default protected
2 results

player.h

Blame
  • 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