S h a d e r s - can sleep now

This commit is contained in:
Ben
2019-10-05 00:10:15 +01:00
parent dbd96ca06f
commit a112e8e4f1
10 changed files with 193 additions and 0 deletions

14
src/util/filereader.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef MINECRAFT_UTIL_FILEREADER_H_
#define MINECRAFT_UTIL_FILEREADER_H_
#include <string>
class FileReader {
public:
FileReader();
std::string LoadTextFromFile(std::string path);
};
#endif