mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-08-25 10:14:58 -05:00
Connection Dialogue
This commit is contained in:
@@ -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 = "";
|
||||
|
||||
Reference in New Issue
Block a user