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:
parent
d307178683
commit
1c507125df
@ -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);
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user