kelson8
eca8fe3c1d
Add functions for text in imgui with the text_functions file. Add keystates file.
9 lines
261 B
C++
9 lines
261 B
C++
#pragma once
|
|
class TextFileFunctions {
|
|
public:
|
|
inline static bool fileExistCheck(const std::string& name);
|
|
static void readTextFile(std::string file);
|
|
//static std::string printTextOutput(std::string file);
|
|
static void printTextOutput(std::string file);
|
|
};
|