Fixup ColorRect and TextureRect renames
This commit is contained in:
@ -36,17 +36,15 @@
|
||||
class ColorRect : public Control {
|
||||
GDCLASS(ColorRect, Control);
|
||||
|
||||
Color color;
|
||||
Color color = Color(1, 1, 1);
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
static void _bind_methods();
|
||||
|
||||
public:
|
||||
void set_frame_color(const Color &p_color);
|
||||
Color get_frame_color() const;
|
||||
|
||||
ColorRect();
|
||||
void set_color(const Color &p_color);
|
||||
Color get_color() const;
|
||||
};
|
||||
|
||||
#endif // COLOR_RECT_H
|
||||
|
||||
Reference in New Issue
Block a user