summaryrefslogtreecommitdiff
path: root/library.cpp
blob: f59d5424d29ef573c45ff0b52cc97fbef7c20afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#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);
}

void log(const char *s){
	cerr<<"[LOG] "<<s<<endl;
}