openmw/components/misc/osguservalues.hpp
2025-02-22 12:37:14 -08:00

17 lines
359 B
C++

#ifndef OPENMW_COMPONENTS_MISC_OSGUSERVALUES_H
#define OPENMW_COMPONENTS_MISC_OSGUSERVALUES_H
#include <string>
namespace Misc
{
struct OsgUserValues
{
static const std::string sFileHash;
static const std::string sExtraData;
static const std::string sXSoftEffect;
static const std::string sTreeAnim;
};
}
#endif