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, 0 insertions, 34 deletions
diff --git a/extension/src/openvic-extension/Checksum.cpp b/extension/src/openvic-extension/Checksum.cpp
deleted file mode 100644
index 6da5afe..0000000
--- a/extension/src/openvic-extension/Checksum.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-#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");
-}