Files
FNGameProj/Source/FortniteUI/Private/MatchmakingInputIndicatorBase.cpp
2024-01-21 00:41:14 +01:00

14 lines
434 B
C++

#include "MatchmakingInputIndicatorBase.h"
void UMatchmakingInputIndicatorBase::SetRemotePlayer(FUniqueNetIdRepl UniqueId) {
}
UMatchmakingInputIndicatorBase::UMatchmakingInputIndicatorBase() {
this->InputSource = EMatchmakingInputSource::Local;
this->bShowLocalInputOnlyWhenDifferentFromDefault = false;
this->bShowRemoteInputOnlyWhenDifferentFromDefault = false;
this->LastInputType = ECommonInputType::Count;
}