| 58 | } |
| 59 | |
| 60 | void GraphicScene::RequestNewSize(float width, float height) { |
| 61 | if ((width > 0.0f) && (height > 0.0f)) { |
| 62 | m_scene_requested_size = {width, height}; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | void GraphicScene::SetShouldReactToEvent(bool value) { |
| 67 | m_should_react_to_event = value; |
no outgoing calls
no test coverage detected