diff --git a/hui-painter/src/rect.rs b/hui-painter/src/rect.rs index c54048d..fe9a6dd 100644 --- a/hui-painter/src/rect.rs +++ b/hui-painter/src/rect.rs @@ -2,12 +2,6 @@ use glam::Vec2; use hui_shared::rect::{Corners, FillColor}; pub struct PaintRectParams { - /// Position of the top-left corner of the rectangle. - pub position: Vec2, - - /// Position of the bottom-right corner of the rectangle. - pub size: Vec2, - /// Color of the rectangle. pub color: FillColor,