summaryrefslogtreecommitdiffstats
path: root/scene/gui/reference_rect.h
diff options
context:
space:
mode:
authorChaosus <chaosus89@gmail.com>2018-08-11 10:37:03 +0300
committerChaosus <chaosus89@gmail.com>2018-08-11 10:37:03 +0300
commitaaf62fcecc7b95825e1843c52c6bd81ee8e5dd40 (patch)
tree6541007164cd5a321a0245f2d8e1c271c696cd37 /scene/gui/reference_rect.h
parent0fc1c4eda8acd97af36228ed1d947bb5cdb2634a (diff)
downloadredot-engine-aaf62fcecc7b95825e1843c52c6bd81ee8e5dd40.tar.gz
Fix ReferenceRect border
Diffstat (limited to 'scene/gui/reference_rect.h')
-rw-r--r--scene/gui/reference_rect.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/gui/reference_rect.h b/scene/gui/reference_rect.h
index 473e348c85..9fad1a06b0 100644
--- a/scene/gui/reference_rect.h
+++ b/scene/gui/reference_rect.h
@@ -36,12 +36,17 @@
class ReferenceRect : public Control {
GDCLASS(ReferenceRect, Control);
+ Color border_color;
protected:
void _notification(int p_what);
+ static void _bind_methods();
public:
ReferenceRect();
+
+ void set_border_color(const Color &color);
+ Color get_border_color() const;
};
#endif // REFERENCE_RECT_H