diff options
Diffstat (limited to 'aoemotebutton.h')
| -rw-r--r-- | aoemotebutton.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/aoemotebutton.h b/aoemotebutton.h new file mode 100644 index 0000000..654972d --- /dev/null +++ b/aoemotebutton.h @@ -0,0 +1,20 @@ +#ifndef AOEMOTEBUTTON_H +#define AOEMOTEBUTTON_H + +#include <QPushButton> + +#include "aoapplication.h" + +class AOEmoteButton : public QPushButton +{ + Q_OBJECT + +public: + AOEmoteButton(QWidget *p_parent, AOApplication *p_ao_app, int p_x, int p_y); + +private: + QWidget *m_parent; + AOApplication *m_ao_app; +}; + +#endif // AOEMOTEBUTTON_H |
