2022-08-28 10:54:34 +00:00
|
|
|
/* limbo_string_names.cpp */
|
|
|
|
|
|
|
|
#include "limbo_string_names.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/string/string_name.h"
|
2022-08-28 10:54:34 +00:00
|
|
|
|
|
|
|
LimboStringNames *LimboStringNames::singleton = nullptr;
|
|
|
|
|
|
|
|
LimboStringNames::LimboStringNames() {
|
|
|
|
_generate_name = StaticCString::create("_generate_name");
|
|
|
|
_setup = StaticCString::create("_setup");
|
|
|
|
_enter = StaticCString::create("_enter");
|
|
|
|
_exit = StaticCString::create("_exit");
|
|
|
|
_tick = StaticCString::create("_tick");
|
2022-08-30 16:48:49 +00:00
|
|
|
behavior_tree_finished = StaticCString::create("behavior_tree_finished");
|
2022-09-28 10:48:45 +00:00
|
|
|
setup = StaticCString::create("setup");
|
|
|
|
entered = StaticCString::create("entered");
|
|
|
|
exited = StaticCString::create("exited");
|
|
|
|
updated = StaticCString::create("updated");
|
|
|
|
_update = StaticCString::create("_update");
|
2022-09-29 10:54:07 +00:00
|
|
|
state_changed = StaticCString::create("state_changed");
|
2022-11-22 22:15:48 +00:00
|
|
|
_get_configuration_warning = StaticCString::create("_get_configuration_warning");
|
2022-08-28 10:54:34 +00:00
|
|
|
}
|