17 lines
470 B
C#
17 lines
470 B
C#
using UnityEngine.InputSystem;
|
|
|
|
namespace NBF.Setting
|
|
{
|
|
public class InputToBagSetting : KeyBoardOption
|
|
{
|
|
public override string Name => "InputToBag";
|
|
public override string Group => SettingsDef.Group.Keyboard;
|
|
public override string Tab => SettingsDef.Tab.Keyboard;
|
|
|
|
public override InputAction InputAction => InputManager.PlayerInputControl.Player.ToBag;
|
|
|
|
protected override void OnApply()
|
|
{
|
|
}
|
|
}
|
|
} |