summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-12-01 21:29:53 +0100
committertomsmeding <hallo@tomsmeding.nl>2015-12-01 21:29:53 +0100
commitac18b3132059b5e7d5f00ccf2b56e543cf0da84b (patch)
tree490654385bf6aa87f160f79006a12289c20322e6 /main.h
parentdcaa318d677a1a6881ccc87640ae75c0fc578bfb (diff)
DAT GAME
Diffstat (limited to 'main.h')
-rw-r--r--main.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.h b/main.h
new file mode 100644
index 0000000..b49d507
--- /dev/null
+++ b/main.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <FL/Fl.H>
+#include <FL/Fl_Window.H>
+#include <FL/Fl_draw.H>
+
+class Fl_Window_draw : public Fl_Window{
+public:
+ Fl_Window_draw(int w,int h,const char *title);
+ Fl_Window_draw(int x,int y,int w,int h,const char *label);
+ void draw(void);
+};