mirror of
https://github.com/open-goal/jak-project
synced 2026-06-03 10:32:08 -04:00
9 lines
203 B
C++
9 lines
203 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace FileUtil {
|
|
std::string GetExecutablePath();
|
|
std::string get_file_path(const std::vector<std::string>& input);
|
|
} // namespace FileUtil
|