mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-04-04 16:25:31 -05:00
24 lines
437 B
C++
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 |