domino-dungeon/draw.h

9 lines
361 B
C
Raw Normal View History

2025-10-18 17:32:37 +02:00
#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);