diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-04-14 18:31:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 18:31:58 +0200 |
commit | 436b038c1806e326ff6458f1692e9009d3a54346 (patch) | |
tree | b5a33a733398b511eb0aa7781860c8accbadd2a0 /extension/src/TestSingleton.hpp | |
parent | 1f04a7827ae377372cb491ff0257a47d0d4c2967 (diff) | |
parent | 7241811bd8c9493b7b6c6480e8d63a5fb7f38e4e (diff) |
Merge pull request #84 from OpenVic2Project/terrain-map
Diffstat (limited to 'extension/src/TestSingleton.hpp')
-rw-r--r-- | extension/src/TestSingleton.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extension/src/TestSingleton.hpp b/extension/src/TestSingleton.hpp index de27589..1261573 100644 --- a/extension/src/TestSingleton.hpp +++ b/extension/src/TestSingleton.hpp @@ -1,20 +1,19 @@ #pragma once #include <godot_cpp/classes/object.hpp> -#include <godot_cpp/core/class_db.hpp> namespace OpenVic2 { class TestSingleton : public godot::Object { GDCLASS(TestSingleton, godot::Object) - static TestSingleton *singleton; + static TestSingleton* singleton; protected: static void _bind_methods(); public: - static TestSingleton *get_singleton(); + static TestSingleton* get_singleton(); TestSingleton(); ~TestSingleton(); |