Files
UnrealEngine/Samples/Games/Lyra/Source/LyraGame/Input/LyraPlayerMappableKeyProfile.cpp
2025-05-18 13:04:45 +08:00

18 lines
403 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Input/LyraPlayerMappableKeyProfile.h"
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
}