---------------------------------- ResourceManager::SetInstance Initializes the singleton with a derived implementation
| 23 | // Initializes the singleton with a derived implementation |
| 24 | // |
| 25 | void ResourceManager::SetInstance(ResourceManager* const instance) |
| 26 | { |
| 27 | s_Instance = instance; |
| 28 | s_Instance->Init(); |
| 29 | } |
| 30 | |
| 31 | //---------------------------------- |
| 32 | // ResourceManager::DestroyInstance |