mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 22:06:40 +00:00
Remove empty functions
This commit is contained in:
parent
d307178683
commit
1c507125df
2 changed files with 0 additions and 5 deletions
|
@ -16,9 +16,6 @@ namespace osgMyGUI
|
||||||
class DataManager : public MyGUI::DataManager
|
class DataManager : public MyGUI::DataManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void initialise() {}
|
|
||||||
void shutdown() {}
|
|
||||||
|
|
||||||
DataManager(const VFS::Manager* vfs);
|
DataManager(const VFS::Manager* vfs);
|
||||||
|
|
||||||
void setResourcePath(const std::string& path);
|
void setResourcePath(const std::string& path);
|
||||||
|
|
|
@ -20,7 +20,6 @@ Platform::Platform(osgViewer::Viewer *viewer, osg::Group* guiRoot, Resource::Ima
|
||||||
mDataManager->setResourcePath(resourcePath);
|
mDataManager->setResourcePath(resourcePath);
|
||||||
|
|
||||||
mRenderManager->initialise();
|
mRenderManager->initialise();
|
||||||
mDataManager->initialise();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Platform::~Platform() = default;
|
Platform::~Platform() = default;
|
||||||
|
@ -28,7 +27,6 @@ Platform::~Platform() = default;
|
||||||
void Platform::shutdown()
|
void Platform::shutdown()
|
||||||
{
|
{
|
||||||
mRenderManager->shutdown();
|
mRenderManager->shutdown();
|
||||||
mDataManager->shutdown();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderManager *Platform::getRenderManagerPtr()
|
RenderManager *Platform::getRenderManagerPtr()
|
||||||
|
|
Loading…
Reference in a new issue