brmbar/gfx.h
Cestmir Houska 4d23ff7e7a Added simple pixel graphics
Signed-off-by: Cestmir Houska <czestmyr@gmail.com>
2011-04-23 01:40:32 +02:00

14 lines
204 B
C

#ifndef _BRMBAR_GRAPHIX_H_
#define _BRMBAR_GRAPHIX_H_
#define COL_WHITE 15
#define COL_BLACK 0
extern void init_graphics();
extern void put_pixel(x, y, color);
extern void deinit_graphics();
#endif