aboutsummaryrefslogtreecommitdiff
path: root/extension/src/TestSingleton.cpp
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-04-05 18:14:32 +0200
committer Hop311 <hop3114@gmail.com>2023-04-05 18:14:32 +0200
commit29b334995b084e5d6944c45b7950c88f370941cc (patch)
tree72b25ee452c934980c5c7e5e3ce7e6e1c5276ac0 /extension/src/TestSingleton.cpp
parentd3c7e9b27ba60550b23efb9e37cc66b91de0c795 (diff)
Input and province selection cleanup
Diffstat (limited to 'extension/src/TestSingleton.cpp')
-rw-r--r--extension/src/TestSingleton.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/TestSingleton.cpp b/extension/src/TestSingleton.cpp
index 0855a30..d9e2b03 100644
--- a/extension/src/TestSingleton.cpp
+++ b/extension/src/TestSingleton.cpp
@@ -6,14 +6,14 @@
using namespace godot;
using namespace OpenVic2;
-TestSingleton *TestSingleton::singleton = nullptr;
+TestSingleton* TestSingleton::singleton = nullptr;
void TestSingleton::_bind_methods()
{
ClassDB::bind_method(D_METHOD("hello_singleton"), &TestSingleton::hello_singleton);
}
-TestSingleton *TestSingleton::get_singleton()
+TestSingleton* TestSingleton::get_singleton()
{
return singleton;
}