iw4x-client/src/Utils/IO.hpp

10 lines
182 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);
}
}