From a262d2d8811a43c906a4cac55b7126ebec7699be Mon Sep 17 00:00:00 2001 From: kobewi Date: Mon, 4 Sep 2023 17:01:33 +0200 Subject: Add shorthand for using singleton string names --- core/core_string_names.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/core_string_names.h') diff --git a/core/core_string_names.h b/core/core_string_names.h index 1c77cef567..d7ddc39f5e 100644 --- a/core/core_string_names.h +++ b/core/core_string_names.h @@ -50,12 +50,10 @@ public: static CoreStringNames *singleton; - StringName _free; + StringName free_; // "free", conflict with C++ keyword. StringName changed; - StringName _script; + StringName script; StringName script_changed; - StringName ___pdcdata; - StringName __getvar; StringName _iter_init; StringName _iter_next; StringName _iter_get; @@ -98,4 +96,6 @@ public: StringName property_list_changed; }; +#define CoreStringName(m_name) CoreStringNames::get_singleton()->m_name + #endif // CORE_STRING_NAMES_H -- cgit v1.2.3