aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/classes/GUITextureRect.hpp
blob: afcf4da7143e216e10da847d765962d2478ef28a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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();
   };
}