atrooney-online-2/aoemotebutton.cpp
2017-02-06 14:06:58 +01:00

11 lines
242 B
C++

#include "aoemotebutton.h"
AOEmoteButton::AOEmoteButton(QWidget *p_parent, AOApplication *p_ao_app, int p_x, int p_y) : QPushButton(p_parent)
{
m_parent = p_parent;
m_ao_app = p_ao_app;
this->move(p_x, p_y);
this->resize(40, 40);
}