| 5 | namespace priv { |
| 6 | |
| 7 | TableCell::TableCell( Widget::Ptr child_, const sf::Rect<std::uint32_t>& rect_, int x_options_, int y_options_, const sf::Vector2f& padding_ ) : |
| 8 | child( child_ ), |
| 9 | rect( rect_ ), |
| 10 | x_options( x_options_ ), |
| 11 | y_options( y_options_ ), |
| 12 | padding( padding_ ) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected