File size: 576 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UserSettings/EnhancedInputUserSettings.h"
#include "LyraPlayerMappableKeyProfile.generated.h"
#define UE_API LYRAGAME_API
UCLASS(MinimalAPI)
class ULyraPlayerMappableKeyProfile : public UEnhancedPlayerMappableKeyProfile
{
GENERATED_BODY()
protected:
//~ Begin UEnhancedPlayerMappableKeyProfile interface
UE_API virtual void EquipProfile() override;
UE_API virtual void UnEquipProfile() override;
//~ End UEnhancedPlayerMappableKeyProfile interface
};
#undef UE_API
|