summaryrefslogtreecommitdiff
path: root/game.h
blob: d24d2d7a59224f41a3343f9190b16bd589e16dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include <stddef.h>
#include <stdint.h>

#ifndef GAME_H
#define GAME_H

typedef struct decoded_image {
  size_t width;
  size_t height;
  uint32_t *buf;
  size_t buf_size;
} decoded_image;

#endif // GAME_H