File size: 332 Bytes
1e67697 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraPawnData.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraPawnData)
ULyraPawnData::ULyraPawnData(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
PawnClass = nullptr;
InputConfig = nullptr;
DefaultCameraMode = nullptr;
}
|