| 9 | namespace sfg { |
| 10 | |
| 11 | Table::Ptr Table::Create() { |
| 12 | return Ptr( new Table ); |
| 13 | } |
| 14 | |
| 15 | sf::Vector2f Table::CalculateRequisition() { |
| 16 | float gap( Context::Get().GetEngine().GetProperty<float>( "Gap", shared_from_this() ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected