kakozuzo/Code/swb_shared/InputButtonHelper.cs

37 lines
1.3 KiB
C#
Raw Normal View History

2024-10-30 19:01:58 +03:00
namespace SWB.Shared;
public partial class InputButtonHelper
{
public static string Forward => "Forward";
public static string Backward => "Backward";
public static string Left => "Left";
public static string Right => "Right";
public static string Jump => "Jump";
public static string Run => "Run";
public static string Walk => "Walk";
public static string Duck => "Duck";
public static string PrimaryAttack => "attack1";
public static string SecondaryAttack => "attack2";
public static string Reload => "reload";
public static string Use => "use";
public static string Slot1 => "Slot1";
public static string Slot2 => "Slot2";
public static string Slot3 => "Slot3";
public static string Slot4 => "Slot4";
public static string Slot5 => "Slot5";
public static string Slot6 => "Slot6";
public static string Slot7 => "Slot7";
public static string Slot8 => "Slot8";
public static string Slot9 => "Slot9";
public static string Slot0 => "Slot0";
public static string SlotPrev => "SlotPrev";
public static string SlotNext => "SlotNext";
public static string View => "View";
public static string Voice => "Voice";
public static string Drop => "Drop";
public static string Flashlight => "Flashlight";
public static string Score => "Score";
public static string Menu => "Menu";
public static string Chat => "Chat";
}