mirror of
https://github.com/open-goal/jak-project
synced 2026-06-04 10:49:04 -04:00
11 lines
133 B
C++
11 lines
133 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace FileUtil
|
|
{
|
|
class FileUtil
|
|
{
|
|
public:
|
|
std::string get_file_path();
|
|
};
|
|
} |