Connection Dialogue

This commit is contained in:
Remnants of Forgotten Disney
2023-11-11 18:19:25 -06:00
parent e01a782929
commit 5d5fe71100
8 changed files with 121 additions and 110 deletions

View File

@@ -8,11 +8,9 @@ class script_obj
{
public:
script_obj();
script_obj(std::string_view nText, int nNext);
script_obj(std::string_view nText, int nRun, int nNext);
script_obj(int nRun, int nNext);
script_obj(std::string_view nText, int nRun, int nNext_if_true, int nNext_if_false);
script_obj(int nRun, int nNext_if_true, int nNext_if_false);
script_obj(std::string_view nText, int nNext); // For dialogue
script_obj(int nRun, int nNext); // For commands
script_obj(int nRun, int nNext_if_true, int nNext_if_false); // for conditionals
std::string get_text();
int get_true_index();