aboutsummaryrefslogtreecommitdiff
path: root/ui_elements.h
diff options
context:
space:
mode:
authortoni <toni@devlap.local>2015-10-22 15:14:02 +0200
committertoni <matzeton@googlemail.com>2015-10-22 19:32:13 +0200
commit659f5274b607a1d8da3e3b30662442de764e9d7a (patch)
tree60a323eb8f443cb93c313b6705e656d176968a3d /ui_elements.h
parent2a8181d2b1fcfec32ff0ea19facb5620c58a8f66 (diff)
export ui elements to an extra module
Diffstat (limited to 'ui_elements.h')
-rw-r--r--ui_elements.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/ui_elements.h b/ui_elements.h
new file mode 100644
index 0000000..591e18b
--- /dev/null
+++ b/ui_elements.h
@@ -0,0 +1,20 @@
+#ifndef UI_ELEMENTS_H
+#define UI_ELEMENTS_H 1
+
+#include "ui.h"
+#include "ui_ani.h"
+#include "ui_input.h"
+#include "ui_statusbar.h"
+#include "ui_nwindow.h"
+
+#include "status.h"
+#include "config.h"
+
+
+void
+init_ui_elements(WINDOW *wnd_main, unsigned int max_x, unsigned int max_y);
+
+void
+free_ui_elements(void);
+
+#endif