ImGuiTest/util/text_file_functions.h
kelson8 eca8fe3c1d Move main menu into its own file. Modify text file functions and rename file.
Add functions for text in imgui with the text_functions file.
Add keystates file.
2024-06-18 13:13:26 -04:00

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);
};