1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <iostream> #include "global.h" #include "library.h" #include "main.h" using namespace std; void draw_text(int x,int y,const char *s){ fl_draw(s,x,y); } void log(const char *s){ cerr<<"[LOG] "<<s<<endl; }