aboutsummaryrefslogtreecommitdiff
path: root/extension/src/TestSingleton.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/TestSingleton.hpp')
-rw-r--r--extension/src/TestSingleton.hpp5
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();