aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/Checksum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic-extension/Checksum.cpp')
-rw-r--r--extension/src/openvic-extension/Checksum.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/extension/src/openvic-extension/Checksum.cpp b/extension/src/openvic-extension/Checksum.cpp
new file mode 100644
index 0000000..6da5afe
--- /dev/null
+++ b/extension/src/openvic-extension/Checksum.cpp
@@ -0,0 +1,34 @@
+#include "Checksum.hpp"
+
+#include <godot_cpp/core/error_macros.hpp>
+#include <godot_cpp/variant/string.hpp>
+
+#include "openvic-extension/utility/ClassBindings.hpp"
+
+using namespace OpenVic;
+using namespace godot;
+
+void Checksum::_bind_methods() {
+ OV_BIND_METHOD(Checksum::get_checksum_text);
+}
+
+Checksum* Checksum::get_singleton() {
+ return _checksum;
+}
+
+Checksum::Checksum() {
+ ERR_FAIL_COND(_checksum != nullptr);
+ _checksum = this;
+}
+
+Checksum::~Checksum() {
+ ERR_FAIL_COND(_checksum != this);
+ _checksum = nullptr;
+}
+
+/* REQUIREMENTS:
+ * DAT-8
+ */
+godot::String Checksum::get_checksum_text() {
+ return godot::String("1234abcd");
+}