diff options
author | ClarkeCode <clarke.john.robert@gmail.com> | 2023-04-15 05:41:57 +0200 |
---|---|---|
committer | ClarkeCode <clarke.john.robert@gmail.com> | 2023-04-17 22:04:28 +0200 |
commit | 04b213d4e20ca4e7ea66b059329771f6fd36c650 (patch) | |
tree | 4ab10469ceff9a536587af6e9901a170c56af0ff /extension/src/TestSingleton.hpp | |
parent | f168c91ff266beda8066014257a30d93704882ee (diff) |
Removing TestSingleton
Extracted game advancement behaviour to separate class
Diffstat (limited to 'extension/src/TestSingleton.hpp')
-rw-r--r-- | extension/src/TestSingleton.hpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/extension/src/TestSingleton.hpp b/extension/src/TestSingleton.hpp deleted file mode 100644 index 1261573..0000000 --- a/extension/src/TestSingleton.hpp +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include <godot_cpp/classes/object.hpp> - -namespace OpenVic2 { - class TestSingleton : public godot::Object - { - GDCLASS(TestSingleton, godot::Object) - - static TestSingleton* singleton; - - protected: - static void _bind_methods(); - - public: - static TestSingleton* get_singleton(); - - TestSingleton(); - ~TestSingleton(); - - void hello_singleton(); - }; -}
\ No newline at end of file |