mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
#include "AthenaReplayBrowserScreenBase.h"
|
|
|
|
|
|
void UAthenaReplayBrowserScreenBase::SaveAndRenameReplay_Implementation(const UAthenaReplayBrowserRowProxyInstance* RowProxy, const FString& NewReplayName) {
|
|
}
|
|
|
|
void UAthenaReplayBrowserScreenBase::RenameReplay_Implementation(const UAthenaReplayBrowserRowProxyInstance* RowProxy, const FString& NewReplayName) {
|
|
}
|
|
|
|
void UAthenaReplayBrowserScreenBase::PlayReplay_Implementation(const UAthenaReplayBrowserRowProxyInstance* RowProxy) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UAthenaReplayBrowserScreenBase::OnRefreshActionExecuted(bool& bPassThrough) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool UAthenaReplayBrowserScreenBase::IsStreamingReplayViewEnabled() {
|
|
return false;
|
|
}
|
|
|
|
bool UAthenaReplayBrowserScreenBase::IsHandlingAction() {
|
|
return false;
|
|
}
|
|
|
|
bool UAthenaReplayBrowserScreenBase::DoesReplayFolderExist() {
|
|
return false;
|
|
}
|
|
|
|
void UAthenaReplayBrowserScreenBase::DeleteReplay_Implementation(const UAthenaReplayBrowserRowProxyInstance* RowProxy) {
|
|
}
|
|
|
|
void UAthenaReplayBrowserScreenBase::DeleteInvalidReplays() {
|
|
}
|
|
|
|
void UAthenaReplayBrowserScreenBase::BrowseToReplayFolder() {
|
|
}
|
|
|
|
bool UAthenaReplayBrowserScreenBase::AreExternalActionsOutstanding() {
|
|
return false;
|
|
}
|
|
|
|
bool UAthenaReplayBrowserScreenBase::AreAnyActionsOutstanding() {
|
|
return false;
|
|
}
|
|
|
|
UAthenaReplayBrowserScreenBase::UAthenaReplayBrowserScreenBase() {
|
|
}
|
|
|