9 lines
361 B
C
9 lines
361 B
C
|
|
#include <stdbool.h>
|
||
|
|
#include <stddef.h>
|
||
|
|
#include "game.h"
|
||
|
|
|
||
|
|
void draw_image( struct image canvas, struct image texture, size_t xpos, size_t ypos, bool vertical);
|
||
|
|
void draw_glyph( struct image canvas, uint32_t glyph, size_t xpos, size_t ypos, struct color color);
|
||
|
|
void draw_text(struct image canvas, char *string, size_t xpos, size_t ypos, struct color color);
|
||
|
|
|