summaryrefslogtreecommitdiff
path: root/library.cpp
blob: 29e50dbd3c5373c9ef25295f8bff98d45d8eca01 (plain)
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;
}