Files
2026-03-03 05:27:03 +05:00

16 lines
450 B
C#

using UnityEngine;
using UHFPS.Input;
using ThunderWire.Attributes;
namespace UHFPS.Runtime
{
[InspectorHeader("UI Controls Group")]
[HelpBox("This component does not have any extra functionality other than a method to restore the default input bindings.")]
public class UIControlsGroup : MonoBehaviour
{
public void ResetBindings()
{
InputManager.ResetInputsToDefaults();
}
}
}