iw4x-client/src/Utils/IO.hpp

11 lines
224 B
C++
Raw Normal View History

2016-07-11 11:14:58 -04:00
namespace Utils
{
namespace IO
{
bool FileExists(std::string file);
void WriteFile(std::string file, std::string data);
std::string ReadFile(std::string file);
2016-09-04 07:06:44 -04:00
bool CreateDirectory(std::string dir);
2016-07-11 11:14:58 -04:00
}
}