domino-dungeon/game.h

17 lines
209 B
C
Raw Normal View History

2025-10-13 21:18:09 +02:00
#include <stddef.h>
#include <stdint.h>
2025-10-14 04:11:36 +02:00
#ifndef GAME_H
#define GAME_H
2025-10-13 21:18:09 +02:00
typedef struct decoded_image {
size_t width;
size_t height;
uint32_t *buf;
size_t buf_size;
} decoded_image;
2025-10-14 04:11:36 +02:00
#endif // GAME_H