aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/classes/GUITextureRect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic-extension/classes/GUITextureRect.hpp')
-rw-r--r--extension/src/openvic-extension/classes/GUITextureRect.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/extension/src/openvic-extension/classes/GUITextureRect.hpp b/extension/src/openvic-extension/classes/GUITextureRect.hpp
new file mode 100644
index 0000000..afcf4da
--- /dev/null
+++ b/extension/src/openvic-extension/classes/GUITextureRect.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <godot_cpp/classes/texture_rect.hpp>
+
+namespace OpenVic {
+ class GUITextureRect : public godot::TextureRect {
+ GDCLASS(GUITextureRect, godot::TextureRect)
+
+ protected:
+ static void _bind_methods();
+ };
+}