mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-04-25 08:07:56 -05:00
23 lines
362 B
C++
23 lines
362 B
C++
#ifndef TEXT_ENGINE_H
|
|
#define TEXT_ENGINE_H
|
|
|
|
#include <tonc.h>
|
|
#include <string>
|
|
|
|
#include "script_obj.h"
|
|
#include "script_array.h"
|
|
|
|
class text_engine
|
|
{
|
|
public:
|
|
text_engine();
|
|
void next_frame();
|
|
int get_next_obj_id(script_obj current_line);
|
|
|
|
private:
|
|
script_obj curr_line;
|
|
int frame_count;
|
|
void set_next_line(std::string next);
|
|
};
|
|
|
|
#endif |