aboutsummaryrefslogtreecommitdiff
path: root/extension/src
diff options
context:
space:
mode:
author Robert Clarke <clarke.john.robert@gmail.com>2023-02-13 03:49:58 +0100
committer Robert Clarke <clarke.john.robert@gmail.com>2023-02-13 03:49:58 +0100
commit9f7ad25bdb8a821b24042bfd62e5a694451789f6 (patch)
tree385d562ebb074887646836b42f9187938b5d152e /extension/src
parentea33d7e2d96bcdbf5135f4ab82333bc8c15cdfba (diff)
Moved positioning of GDCLASS macro
Diffstat (limited to 'extension/src')
-rw-r--r--extension/src/Simulation.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/Simulation.hpp b/extension/src/Simulation.hpp
index 6ade846..554f257 100644
--- a/extension/src/Simulation.hpp
+++ b/extension/src/Simulation.hpp
@@ -7,10 +7,10 @@
namespace OpenVic2 {
class Simulation : public godot::Object {
+ GDCLASS(Simulation, godot::Object);
std::vector<size_t> exampleProvinces;
//BEGIN BOILERPLATE
- GDCLASS(Simulation, godot::Object);
static Simulation* _simulation;
protected: