diff options
author | hop311 <hop3114@gmail.com> | 2024-09-13 01:14:01 +0200 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2024-09-13 01:14:01 +0200 |
commit | 71cda1b644bd8b4e3c41e65e006cf842b2f03b6e (patch) | |
tree | cb9a665943758701ab1106c52f30d69cff7aa0f2 /extension/src/openvic-extension/singletons/MenuSingleton.hpp | |
parent | 88b84c787ea47b4c12b221f6338cf673447a97bf (diff) |
Modifier and rule set tooltips (WIP)
Diffstat (limited to 'extension/src/openvic-extension/singletons/MenuSingleton.hpp')
-rw-r--r-- | extension/src/openvic-extension/singletons/MenuSingleton.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extension/src/openvic-extension/singletons/MenuSingleton.hpp b/extension/src/openvic-extension/singletons/MenuSingleton.hpp index 3f07583..97a6956 100644 --- a/extension/src/openvic-extension/singletons/MenuSingleton.hpp +++ b/extension/src/openvic-extension/singletons/MenuSingleton.hpp @@ -11,6 +11,8 @@ namespace OpenVic { struct CountryInstance; struct State; struct ProvinceInstance; + struct ModifierValue; + struct RuleSet; class MenuSingleton : public godot::Object { GDCLASS(MenuSingleton, godot::Object) @@ -105,6 +107,9 @@ namespace OpenVic { godot::String get_country_name(CountryInstance const& country) const; godot::String get_country_adjective(CountryInstance const& country) const; + godot::String make_modifier_effects_tooltip(ModifierValue const& modifier) const; + godot::String make_rules_tooltip(RuleSet const& rules) const; + protected: static void _bind_methods(); |