view 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
line wrap: on
line source

#include <glib.h>

#ifndef PN_DRAWING_H
#define PN_DRAWING_H

void pn_draw_dot (guint x, guint y, guchar value);
void pn_draw_line (guint _x0, guint _y0, guint _x1, guint _y1, guchar value);

#endif