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

palyamezo.h

Blame
  • palyamezo.h 423 B
    #ifndef PALYAMEZO_H
    #define PALYAMEZO_H
    #include "widget.h"
    
    class Palyamezo : public Widget
    {
        int index_m;
        int index_n;
    public:
        Palyamezo(Palya* _p, int _x, int _y, int _w, int _h, int _m, int _n);
        ~Palyamezo();
        void draw() override;
        void chosen_draw();
        bool filled = false;
        bool chosen = false;
        void set_chosen();
        void reset_chosen();
    };
    
    #endif // PALYAMEZO_H