1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-07 07:15:32 +00:00
openmw-tes3mp/components/misc/fileops.hpp

19 lines
268 B
C++
Raw Normal View History

#ifndef MISC_FILEOPS_H
#define MISC_FILEOPS_H
2010-06-03 19:51:59 +00:00
#include <string>
namespace Misc
{
2010-06-03 19:51:59 +00:00
/// Check if a given path is an existing file (not a directory)
bool isFile(const char *name);
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
std::string macBundlePath();
#endif
}
2010-06-03 19:51:59 +00:00
#endif