mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
Add platform specific funcs
This commit is contained in:
parent
7bfc4e438e
commit
4715072c86
1 changed files with 14 additions and 0 deletions
|
@ -30,4 +30,18 @@ geode::Result<ghc::filesystem::path> utils::file::
|
|||
return geode::Err("This function is currently unimplemented");
|
||||
}
|
||||
|
||||
void geode::utils::game::launchLoaderUninstaller(bool deleteSaveData) {
|
||||
log::error("Launching Geode uninstaller is not supported on android");
|
||||
}
|
||||
|
||||
void geode::utils::game::exit() {
|
||||
// Not implemented
|
||||
log::error("Exiting the game is not implemented on android");
|
||||
}
|
||||
|
||||
void geode::utils::game::restart() {
|
||||
// Not implemented
|
||||
log::error("Restarting the game is not implemented on android");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue