iw4x-client/src/Utils/IO.hpp
2016-09-04 13:06:44 +02:00

11 lines
224 B
C++

namespace Utils
{
namespace IO
{
bool FileExists(std::string file);
void WriteFile(std::string file, std::string data);
std::string ReadFile(std::string file);
bool CreateDirectory(std::string dir);
}
}