aboutsummaryrefslogtreecommitdiff
path: root/aoemotebutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'aoemotebutton.cpp')
-rw-r--r--aoemotebutton.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/aoemotebutton.cpp b/aoemotebutton.cpp
new file mode 100644
index 0000000..6cb99c7
--- /dev/null
+++ b/aoemotebutton.cpp
@@ -0,0 +1,10 @@
+#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);
+}