| 149 | Rectangle& SetPosition(const ::Vector2& position) { return SetPosition(position.x, position.y); } |
| 150 | protected: |
| 151 | void set(const ::Rectangle& rect) { |
| 152 | x = rect.x; |
| 153 | y = rect.y; |
| 154 | width = rect.width; |
| 155 | height = rect.height; |
| 156 | } |
| 157 | }; |
| 158 | } // namespace raylib |
| 159 |
nothing calls this directly
no outgoing calls
no test coverage detected