1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/misc/resourcehelpers.hpp

17 lines
394 B
C++

#ifndef MISC_RESOURCEHELPERS_H
#define MISC_RESOURCEHELPERS_H
#include <string>
namespace Misc
{
namespace ResourceHelpers
{
std::string correctResourcePath(const std::string &topLevelDirectory, const std::string &filename);
std::string correctTexturePath(const std::string &filename);
std::string correctIconPath(const std::string &filename);
}
}
#endif