comparison src/paranormal/drawing.h @ 304:3d0b7ca9c8eb trunk

[svn] - add pn_draw_dot() and convert some functions to use that instead of redundant checks all over the code.
author nenolod
date Thu, 23 Nov 2006 00:02:25 -0800
parents 0c5e3d562d99
children 3b034150d31e
comparison
equal deleted inserted replaced
303:5e19836a2db2 304:3d0b7ca9c8eb
1 #include <glib.h> 1 #include <glib.h>
2 2
3 #ifndef PN_DRAWING_H 3 #ifndef PN_DRAWING_H
4 #define PN_DRAWING_H 4 #define PN_DRAWING_H
5 5
6 void pn_draw_dot (guint x, guint y, guchar value);
6 void pn_draw_line (guint _x0, guint _y0, guint _x1, guint _y1, guchar value); 7 void pn_draw_line (guint _x0, guint _y0, guint _x1, guint _y1, guchar value);
7 8
8 #endif 9 #endif