mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 23:15:33 +00:00
12 lines
199 B
C
12 lines
199 B
C
|
#ifndef OGREPLUGIN_H
|
||
|
#define OGREPLUGIN_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Ogre {
|
||
|
class Root;
|
||
|
}
|
||
|
|
||
|
extern bool loadOgrePlugin(std::string pluginDir, std::string pluginName, Ogre::Root &ogreRoot);
|
||
|
|
||
|
#endif
|