diff options
author | hop311 <hop3114@gmail.com> | 2023-11-08 23:24:21 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-11-16 00:24:28 +0100 |
commit | bc0b3c61ae0b742da304cada451fba1df72bb0ad (patch) | |
tree | 047968e7ea8189ad8391dcabbd09fee1d8cdc30c /extension/src/openvic-extension/singletons/Checksum.cpp | |
parent | 72d893d55d26ae9dc6739a853d1773b3cb286123 (diff) |
GUI elements -> Godot UI nodes generator
Diffstat (limited to 'extension/src/openvic-extension/singletons/Checksum.cpp')
-rw-r--r-- | extension/src/openvic-extension/singletons/Checksum.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/extension/src/openvic-extension/singletons/Checksum.cpp b/extension/src/openvic-extension/singletons/Checksum.cpp new file mode 100644 index 0000000..9f48647 --- /dev/null +++ b/extension/src/openvic-extension/singletons/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 _singleton; +} + +Checksum::Checksum() { + ERR_FAIL_COND(_singleton != nullptr); + _singleton = this; +} + +Checksum::~Checksum() { + ERR_FAIL_COND(_singleton != this); + _singleton = nullptr; +} + +/* REQUIREMENTS: + * DAT-8 + */ +godot::String Checksum::get_checksum_text() { + return godot::String("1234abcd"); +} |