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

palyamezo.h

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