Practical Tools for Simple Design
Loading...
Searching...
No Matches
LoadTextFile.hpp
1#ifndef UTIL_LOAD_TEXT_FILE_HPP
2#define UTIL_LOAD_TEXT_FILE_HPP
3
4#include "pch.hpp" // IWYU pragma: export
5
6namespace Util {
10std::string LoadTextFile(const std::string &filepath);
11} // namespace Util
12
13#endif
Useful tools for development.
Definition: Animation.hpp:12
std::string LoadTextFile(const std::string &filepath)
Generic helper function that loads a text file into a std::string.