1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-12 22:14:42 +00:00

Remove empty functions

This commit is contained in:
elsid 2022-07-18 20:51:08 +02:00
parent d307178683
commit 1c507125df
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625
2 changed files with 0 additions and 5 deletions

View File

@ -16,9 +16,6 @@ namespace osgMyGUI
class DataManager : public MyGUI::DataManager
{
public:
void initialise() {}
void shutdown() {}
DataManager(const VFS::Manager* vfs);
void setResourcePath(const std::string& path);

View File

@ -20,7 +20,6 @@ Platform::Platform(osgViewer::Viewer *viewer, osg::Group* guiRoot, Resource::Ima
mDataManager->setResourcePath(resourcePath);
mRenderManager->initialise();
mDataManager->initialise();
}
Platform::~Platform() = default;
@ -28,7 +27,6 @@ Platform::~Platform() = default;
void Platform::shutdown()
{
mRenderManager->shutdown();
mDataManager->shutdown();
}
RenderManager *Platform::getRenderManagerPtr()