ImGuiTest/util/text_file_functions.h
kelson8 42956372a7 Change ImGui title
Make text file functions output to screen when test checkbox is checked.
2025-01-06 13:25:45 -05:00

12 lines
322 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);
static void outputTextFileContents(const char* filePath);
};