mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-07 21:04:00 +02:00
14 lines
204 B
C
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
|
|
|