| 1310 | void Game_Setup(); |
| 1311 | |
| 1312 | template <typename tType> std::shared_ptr<tType> GetGraphics() { |
| 1313 | return std::dynamic_pointer_cast<tType>(mGraphics); |
| 1314 | } |
| 1315 | |
| 1316 | template <typename tType> std::shared_ptr<tType> GetSound() { |
| 1317 | return std::dynamic_pointer_cast<tType>(mSound); |
nothing calls this directly
no outgoing calls
no test coverage detected