| 21 | |
| 22 | |
| 23 | std::unique_ptr<RenderQueue> Separator::InvalidateImpl() const { |
| 24 | return Context::Get().GetEngine().CreateSeparatorDrawable( std::dynamic_pointer_cast<const Separator>( shared_from_this() ) ); |
| 25 | } |
| 26 | |
| 27 | sf::Vector2f Separator::CalculateRequisition() { |
| 28 | return sf::Vector2f( 2.f, 2.f ); |
nothing calls this directly
no test coverage detected