Files
UnrealEngine/Samples/Games/Lyra/Source/LyraGame/System/LyraGameSession.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
552 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraGameSession.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraGameSession)
ALyraGameSession::ALyraGameSession(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
bool ALyraGameSession::ProcessAutoLogin()
{
// This is actually handled in LyraGameMode::TryDedicatedServerLogin
return true;
}
void ALyraGameSession::HandleMatchHasStarted()
{
Super::HandleMatchHasStarted();
}
void ALyraGameSession::HandleMatchHasEnded()
{
Super::HandleMatchHasEnded();
}