summaryrefslogtreecommitdiff
path: root/library.cpp
blob: 5cfb68f51f14385f44e220939a72c5e4a7458ef3 (plain)
1
2
3
4
5
6
7
8
#include <iostream>
#include "library.h"

using namespace std;

void draw_text(int x,int y,const char *s){
	cerr<<"draw_text: x="<<x<<" y="<<y<<" s="<<s<<endl;
}