mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:49:54 +00:00
25 lines
349 B
C++
25 lines
349 B
C++
|
#ifndef OPENMW_MWRENDER_UTIL_H
|
||
|
#define OPENMW_MWRENDER_UTIL_H
|
||
|
|
||
|
#include <osg/ref_ptr>
|
||
|
#include <string>
|
||
|
|
||
|
namespace osg
|
||
|
{
|
||
|
class Node;
|
||
|
}
|
||
|
|
||
|
namespace Resource
|
||
|
{
|
||
|
class ResourceSystem;
|
||
|
}
|
||
|
|
||
|
namespace MWRender
|
||
|
{
|
||
|
|
||
|
void overrideTexture(const std::string& texture, Resource::ResourceSystem* resourceSystem, osg::ref_ptr<osg::Node> node);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|