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