code: 9ferno

ref: 6bfe4cf8107de7a01ff8a0667db7f28f08e4d238
dir: /include/cursor.h/

View raw version
/*
 * This is a separate file because image.h cannot be
 * included in many of the graphics drivers due to
 * name conflicts
 */

typedef struct Drawcursor Drawcursor;
struct Drawcursor
{
	int	hotx;
	int	hoty;
	int	minx;
	int	miny;
	int	maxx;
	int	maxy;
	uchar*	data;
};

void	drawcursor(Drawcursor*);