From ba07c2bc98fdba991b6d6444d57f0f897cf5959f Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 12 Jun 2016 20:08:57 +0200 Subject: import full project --- src/draw.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/draw.h (limited to 'src/draw.h') diff --git a/src/draw.h b/src/draw.h new file mode 100644 index 0000000..2a9f9de --- /dev/null +++ b/src/draw.h @@ -0,0 +1,15 @@ +#ifndef __DRAW_H__ +#define __DRAW_H__ + +void pixel(char *buffer, int x, int y, int type); +void pixelgray(char *buffer, int x,int y, int type); +void line(char *buffer, int x1, int y1, int x2, int y2, int color); +void drawChar(char *buffer, char charact, int posx, int posy); +void drawString(char *buffer, char *string, unsigned char strlenght, int posx, int posy); +void drawNumber(char *buffer, char num, int posx, int posy); +void fillbox(char *buffer, int posx, int posy, int type); +void normalfillbox(char *buffer, int posx, int posy, int type); +int DrawSprite(); +void DrawBlock(); + +#endif \ No newline at end of file -- cgit v1.3.1