File size: 420 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // 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
}
|