Manuel Wagner 7d022bae76 Added Lyra
2022-05-23 20:41:30 +02:00

20 lines
380 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraGameSession.h"
ALyraGameSession::ALyraGameSession(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
void ALyraGameSession::HandleMatchHasStarted()
{
Super::HandleMatchHasStarted();
}
void ALyraGameSession::HandleMatchHasEnded()
{
Super::HandleMatchHasEnded();
}