mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#include "FortPlayerControllerFrontEnd.h"
|
|
|
|
void AFortPlayerControllerFrontEnd::StopWriteToAudioFile() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::StopFacialAnimationTest() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::StartWriteToAudioFile() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::RunFacialAnimationTest(const FString& WaveFileName, int32 SampleRate) {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::OpenEmotePicker() {
|
|
}
|
|
|
|
bool AFortPlayerControllerFrontEnd::IsXboxPlatform() {
|
|
return false;
|
|
}
|
|
|
|
bool AFortPlayerControllerFrontEnd::IsVoiceChatPlayerMuted(const FUniqueNetIdRepl& UniqueNetId) {
|
|
return false;
|
|
}
|
|
|
|
bool AFortPlayerControllerFrontEnd::IsInVoiceChat() {
|
|
return false;
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::EmotePickerSelect() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::EmotePickerPrevWheel() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::EmotePickerNextWheel() {
|
|
}
|
|
|
|
void AFortPlayerControllerFrontEnd::CloseEmotePicker() {
|
|
}
|
|
|
|
AFortPlayerControllerFrontEnd::AFortPlayerControllerFrontEnd() {
|
|
this->bUnlockAllZones = false;
|
|
}
|
|
|