18 lines
356 B
C
18 lines
356 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include <gb/gb.h>
|
|
#include <gb/bgb_emu.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <rand.h>
|
|
#include <string.h>
|
|
|
|
#define TILE_WIDTH 8
|
|
#define TILE_HEIGHT 8 |