DRG-Femboy-Voice/Source/FSD/Private/FSDPlayerControllerBase.cpp
2025-04-15 12:39:31 -07:00

40 lines
963 B
C++
Executable file

#include "FSDPlayerControllerBase.h"
#include "WindowManager.h"
void AFSDPlayerControllerBase::ToggleAnalogCursor(bool Visible) {
}
void AFSDPlayerControllerBase::StopAspectRatioAxisConstraint() {
}
void AFSDPlayerControllerBase::StartAspectRatioAxisConstraint() {
}
void AFSDPlayerControllerBase::SetHUDVisible(bool IsVisible, EHUDVisibilityReason reason) {
}
void AFSDPlayerControllerBase::Server_Cheat_SwitchCharacter_Implementation(UPlayerCharacterID* NewCharacter) {
}
bool AFSDPlayerControllerBase::IsPlayerBlocked(const FString& UserId) {
return false;
}
bool AFSDPlayerControllerBase::IsHUDVisibleFlagSet(EHUDVisibilityReason reason) {
return false;
}
void AFSDPlayerControllerBase::Client_WasKicked_Implementation(EDisconnectReason reason) {
}
AFSDPlayerControllerBase::AFSDPlayerControllerBase() {
this->bStartWithBlackScreen = true;
this->WindowManager = CreateDefaultSubobject<UWindowManager>(TEXT("WindowManager"));
}