LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/RemappableKey.cs
2023-12-22 19:55:14 -05:00

14 lines
225 B
C#

using System;
using UnityEngine.InputSystem;
[Serializable]
public class RemappableKey
{
public string ControlName;
public InputActionReference currentInput;
public int rebindingIndex = -1;
public bool gamepadOnly;
}