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

@@ -4,14 +4,10 @@
#include "gba_flash.h"
#include "pokemon.h"
#include "pokemon_party.h"
#include "script_array.h"
script_obj::script_obj()
{
text = "";
next_index = 0;
conditional_index = 0;
next_false_index = 0;
}
script_obj::script_obj(){
};
script_obj::script_obj(std::string_view nText, int nNext)
{
@@ -21,14 +17,6 @@ script_obj::script_obj(std::string_view nText, int nNext)
next_false_index = 0;
}
script_obj::script_obj(std::string_view nText, int nRun, int nNext)
{
text = nText;
next_index = nNext;
conditional_index = nRun;
next_false_index = nNext;
}
script_obj::script_obj(int nRun, int nNext)
{
text = "";
@@ -37,14 +25,6 @@ script_obj::script_obj(int nRun, int nNext)
next_false_index = nNext;
}
script_obj::script_obj(std::string_view nText, int nRun, int nNext_if_true, int nNext_if_false)
{
text = nText;
next_index = nNext_if_true;
conditional_index = nRun;
next_false_index = nNext_if_false;
}
script_obj::script_obj(int nRun, int nNext_if_true, int nNext_if_false)
{
text = "";