blob: 8083a5a2180cb840b62781d3d4f83c98e684a51f (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <string>
namespace Platform {
bool SetupFonts();
std::string FindResourceFolder();
std::string FindConfigFile();
std::string FindStateCacheFolder();
} // namespace Platform
|