lyra_game_ue/Source/LyraGame/Input/LyraPlayerMappableKeyProfile.h
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01:00

20 lines
496 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UserSettings/EnhancedInputUserSettings.h"
#include "LyraPlayerMappableKeyProfile.generated.h"
UCLASS()
class LYRAGAME_API ULyraPlayerMappableKeyProfile : public UEnhancedPlayerMappableKeyProfile
{
GENERATED_BODY()
protected:
//~ Begin UEnhancedPlayerMappableKeyProfile interface
virtual void EquipProfile() override;
virtual void UnEquipProfile() override;
//~ End UEnhancedPlayerMappableKeyProfile interface
};