forked from teamnwah/openmw-tes3coop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
589 B
C++
24 lines
589 B
C++
#ifndef OPENMW_COMPONENTS_NIFOVERRIDES_NIFOVERRIDES_HPP
|
|
#define OPENMW_COMPONENTS_NIFOVERRIDES_NIFOVERRIDES_HPP
|
|
|
|
#include <OgreConfigFile.h>
|
|
|
|
namespace NifOverrides
|
|
{
|
|
|
|
typedef std::pair<bool, int> TransparencyResult;
|
|
|
|
/// \brief provide overrides for some model / texture properties that bethesda has chosen poorly
|
|
class Overrides
|
|
{
|
|
public:
|
|
static Ogre::ConfigFile mTransparencyOverrides;
|
|
void loadTransparencyOverrides (const std::string& file);
|
|
|
|
static TransparencyResult getTransparencyOverride(const std::string& texture);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|