diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-12-30 09:38:02 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-12-30 09:38:02 +0100 |
commit | f62f270de05ebe5a71ef2e66a1a0f54b4ed9dc61 (patch) | |
tree | 19957fe8bc0e0bccbce6c73fef6b6092ed705807 /library.cpp | |
parent | c8a110cdeca8c23b88d6908f0b06231847c9e722 (diff) |
Working sprites and instance_create
Diffstat (limited to 'library.cpp')
-rw-r--r-- | library.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library.cpp b/library.cpp index 687914a..29e50db 100644 --- a/library.cpp +++ b/library.cpp @@ -1,12 +1,11 @@ #include <iostream> +#include "global.h" #include "library.h" #include "main.h" using namespace std; -extern Fl_Window_draw *window; - void draw_text(int x,int y,const char *s){ fl_draw(s,x,y); } |