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

20 lines
475 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Input/LyraPlayerMappableKeyProfile.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraPlayerMappableKeyProfile)
void ULyraPlayerMappableKeyProfile::EquipProfile()
{
Super::EquipProfile();
// Do anything you may want to when a new key profile is equipped
}
void ULyraPlayerMappableKeyProfile::UnEquipProfile()
{
Super::UnEquipProfile();
// Do anything you may want to when a new key profile is unequipped
}