summaryrefslogtreecommitdiff
path: root/draw.h
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2016-06-12 19:38:09 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2016-06-12 19:38:09 +0200
commit847d1a917f6cb17493c66398ce4ce53b89d8c438 (patch)
tree60217c2da82d985d676e95260ae8079ff76b03dc /draw.h
downloadfx-matris-847d1a917f6cb17493c66398ce4ce53b89d8c438.tar.gz
fx-matris-847d1a917f6cb17493c66398ce4ce53b89d8c438.zip
import into git
Diffstat (limited to 'draw.h')
-rw-r--r--draw.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/draw.h b/draw.h
new file mode 100644
index 0000000..2a9f9de
--- /dev/null
+++ b/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