24 lines
485 B
C
24 lines
485 B
C
/**
|
|
* Copyright (c) 2022 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "libs.h"
|
|
#include "time.h"
|
|
|
|
#include "display/common.h"
|
|
#include "display/tilemap.h"
|
|
#include "poker/poker.h"
|
|
#include "conversation/fade.h"
|
|
#include "conversation/pause.h"
|
|
#include "conversation/queue.h"
|
|
#include "conversation/textbox.h"
|
|
|
|
#define GB_BACKGROUND_COLUMNS 0x20
|
|
#define GB_BACKGROUND_ROWS 0x20
|
|
|
|
void main(); |