| 13 | } |
| 14 | |
| 15 | std::unique_ptr<RenderQueue> Button::InvalidateImpl() const { |
| 16 | return Context::Get().GetEngine().CreateButtonDrawable( std::dynamic_pointer_cast<const Button>( shared_from_this() ) ); |
| 17 | } |
| 18 | |
| 19 | void Button::SetLabel( const sf::String& label ) { |
| 20 | m_label = label; |
nothing calls this directly
no test coverage detected