18 lines
474 B
C#
18 lines
474 B
C#
using UnityEngine.InputSystem;
|
|
|
|
namespace NBF.Setting
|
|
{
|
|
public class InputHelpSetting : KeyBoardOption
|
|
{
|
|
public override string Name => "InputHelp";
|
|
public override string Group => SettingsDef.Group.Keyboard;
|
|
public override string Tab => SettingsDef.Tab.Keyboard;
|
|
|
|
public override InputAction InputAction => Game.Input.PlayerInputControl.Player.Help;
|
|
|
|
protected override void OnApply()
|
|
{
|
|
}
|
|
|
|
}
|
|
} |