ImGuiTest/src/functions/file_functions.h

15 lines
225 B
C++

#pragma once
#include <string>
class FileFunctions {
public:
#ifdef _WIN32
// TODO Fix for Linux
// Folder stuff
static bool DoesFileExist(const std::string& fileName);
static std::string CurrentDirectory();
#endif
};