diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..1db4858 --- /dev/null +++ b/src/main.c @@ -0,0 +1,17 @@ +#include <stdio.h> +#include "tiles.h" +#include "ppm.h" + +#define TILES 5 + +int *(tiles[TILES]) = {0}; +int TILE_WIDTH; +int TILE_HEIGHT; + +int main(void) +{ + load_tiles(TILES); + print_tiles(TILES); + free_tiles(TILES); + return 0; +} |