aboutsummaryrefslogtreecommitdiff
path: root/extension/src/TestSingleton.hpp
diff options
context:
space:
mode:
author ClarkeCode <33846391+ClarkeCode@users.noreply.github.com>2023-04-17 22:38:34 +0200
committer GitHub <noreply@github.com>2023-04-17 22:38:34 +0200
commit258a088018d36e987b3ffe4a9b418a6c21ad9217 (patch)
tree4ab10469ceff9a536587af6e9901a170c56af0ff /extension/src/TestSingleton.hpp
parentf168c91ff266beda8066014257a30d93704882ee (diff)
parent04b213d4e20ca4e7ea66b059329771f6fd36c650 (diff)
Merge pull request #89 from OpenVic2Project/spring-cleaning
Spring Cleaning
Diffstat (limited to 'extension/src/TestSingleton.hpp')
-rw-r--r--extension/src/TestSingleton.hpp23
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