| 122 | } |
| 123 | |
| 124 | CEGUI::Window* Gui::getGuiSheet(guiSheet sheet) |
| 125 | { |
| 126 | auto it = mSheets.find(sheet); |
| 127 | if(it != mSheets.end()) |
| 128 | { |
| 129 | return it->second; |
| 130 | } |
| 131 | return nullptr; |
| 132 | } |
| 133 | |
| 134 | bool Gui::playButtonClickSound(const CEGUI::EventArgs&) |
| 135 | { |
no outgoing calls
no test coverage detected