diff options
author | Robert Clarke <clarke.john.robert@gmail.com> | 2023-02-13 04:05:08 +0100 |
---|---|---|
committer | Robert Clarke <clarke.john.robert@gmail.com> | 2023-02-13 04:05:08 +0100 |
commit | a4f213bf923b79674b8dcef4c35f0f79329ffc80 (patch) | |
tree | 3914b8e2e1bfbdefa64fb767d055b0ef54d78b37 /extension/src/Simulation.hpp | |
parent | 9f7ad25bdb8a821b24042bfd62e5a694451789f6 (diff) |
Removing semicolons that would cause issues on MSVC
Diffstat (limited to 'extension/src/Simulation.hpp')
-rw-r--r-- | extension/src/Simulation.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/Simulation.hpp b/extension/src/Simulation.hpp index 554f257..e16f34b 100644 --- a/extension/src/Simulation.hpp +++ b/extension/src/Simulation.hpp @@ -7,7 +7,7 @@ namespace OpenVic2 { class Simulation : public godot::Object { - GDCLASS(Simulation, godot::Object); + GDCLASS(Simulation, godot::Object) std::vector<size_t> exampleProvinces; //BEGIN BOILERPLATE |