Files
jak-project/common/util/FileUtil.h
T
2020-09-09 16:54:16 +12:00

11 lines
133 B
C++

#pragma once
#include <string>
namespace FileUtil
{
class FileUtil
{
public:
std::string get_file_path();
};
}