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

12 lines
309 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraPawnComponent.h"
ULyraPawnComponent::ULyraPawnComponent(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
PrimaryComponentTick.bStartWithTickEnabled = false;
PrimaryComponentTick.bCanEverTick = false;
}