1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-28 19:15:32 +00:00
openmw-tes3mp/components/misc/resourcehelpers.hpp

16 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