Poke_Transporter_GB/include/text_engine.h
Remnants of Forgotten Disney de40daa51e Updating buttons and dialogue
2024-03-29 11:55:54 -05:00

24 lines
437 B
C++

#ifndef TEXT_ENGINE_H
#define TEXT_ENGINE_H
#include <tonc.h>
#include <string>
#include "script_obj.h"
#include "script_array.h"
#define H_MAX 240
#define V_MAX 160
#define LEFT 8
#define RIGHT (H_MAX - LEFT)
#define TOP 120
#define BOTTOM V_MAX
void init_text_engine();
int text_loop();
int text_next_obj_id(script_obj current_line);
void show_text_box();
void hide_text_box();
void set_text_exit();
#endif