lyra_game_ue/Source/LyraGame/Input/LyraPlayerMappableKeyProfile.cpp
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01: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
}