File size: 388 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "Input/LyraInputUserSettings.h"
void ULyraInputUserSettings::ApplySettings()
{
Super::ApplySettings();
// Add any functionality you want to happen when the input settings are applied to the user
// This is a good place to put a breakpoint in your debugger to see the flow of
// how input settings are used :)
} |