aboutsummaryrefslogtreecommitdiff
path: root/src/font/inc/font.h
blob: b074089820394b73373c435b724eeae9037438e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef FONT_H
#define FONT_H

#ifdef __cplusplus
extern "C"
{
#endif

enum font
{
    FONT
};

int font_puts(enum font, short x, short y, const char *s);
int font_dim(enum font f, const char *str, short *x, short *y);

extern struct sprite font_sprite;

#ifdef __cplusplus
}
#endif

#endif /* FONT_H */