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

palya.h

Blame
  • palya.h 538 B
    #ifndef PALYA_H
    #define PALYA_H
    #include <vector>
    #include "graphics.hpp"
    
    class Mester;
    class Palyamezo;
    class TextWidget;
    
    class Palya
    {
        const int XX = 1000;
        const int YY = 1000;
        TextWidget* title;
        TextWidget* bo3;
        TextWidget* nev1;
        TextWidget* nev2;
        TextWidget* pontok1;
        TextWidget* pontok2;
    public:
        Palya();
        std::vector<Palyamezo*> palyaterulet;
        Mester* mesztor;
        void jatek(genv::event ev);
        void grafikai_valtozas();
        ~Palya();
    };
    
    #endif // PALYA_H