aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/Checksum.cpp
diff options
context:
space:
mode:
author hop311 <hop3114@gmail.com>2023-11-08 23:24:21 +0100
committer hop311 <hop3114@gmail.com>2023-11-16 00:24:28 +0100
commitbc0b3c61ae0b742da304cada451fba1df72bb0ad (patch)
tree047968e7ea8189ad8391dcabbd09fee1d8cdc30c /extension/src/openvic-extension/Checksum.cpp
parent72d893d55d26ae9dc6739a853d1773b3cb286123 (diff)
GUI elements -> Godot UI nodes generator
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");
-}