aboutsummaryrefslogtreecommitdiff
path: root/include/ui33.h
blob: 22208feab59329a0c0fbc2ae597468f69d39427d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __UI33_H__
#define __UI33_H__


#define UI33_BLACK 0
#define UI33_RED 1
#define UI33_GREEN 2
#define UI33_BLUE 3
#define UI33_YELLOW 4
#define UI33_ORANGE 5
#define UI33_MAGENTA 6
#define UI33_CYAN 7
#define UI33_WHITE 8



typedef struct {
  Size x, y;
} Mouse33;

extern Mouse33 __mouse;


void ui33_add_message( String fmt, ... );
void ui33_draw_messages( void );
void ui33_draw_mouse( void );


#endif /** UI33_H **/