mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
25 lines
482 B
C++
25 lines
482 B
C++
#include "FortGameOptions.h"
|
|
|
|
|
|
void UFortGameOptions::UpdateHUDSettings(FGameplayTag HUDMapping, bool NewVisibility) const {
|
|
}
|
|
|
|
void UFortGameOptions::SetControllerPlatform(const FString& InControllerPlatform) {
|
|
}
|
|
|
|
|
|
bool UFortGameOptions::GetHUDSettings(FGameplayTag HUDMapping) const {
|
|
return false;
|
|
}
|
|
|
|
FString UFortGameOptions::GetControllerPlatform() const {
|
|
return TEXT("");
|
|
}
|
|
|
|
void UFortGameOptions::ConstructHUDTagList() {
|
|
}
|
|
|
|
UFortGameOptions::UFortGameOptions() {
|
|
}
|
|
|