2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.Input;
|
2018-05-27 10:13:33 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Input
|
|
|
|
|
|
{
|
|
|
|
|
|
[KeyFunctions]
|
|
|
|
|
|
public static class ContentKeyFunctions
|
|
|
|
|
|
{
|
2020-05-03 14:26:49 +02:00
|
|
|
|
public static readonly BoundKeyFunction WideAttack = "WideAttack";
|
2018-05-27 10:13:33 +02:00
|
|
|
|
public static readonly BoundKeyFunction ActivateItemInHand = "ActivateItemInHand";
|
2019-07-20 13:11:42 +02:00
|
|
|
|
public static readonly BoundKeyFunction ActivateItemInWorld = "ActivateItemInWorld"; // default action on world entity
|
|
|
|
|
|
public static readonly BoundKeyFunction Drop = "Drop";
|
|
|
|
|
|
public static readonly BoundKeyFunction ExamineEntity = "ExamineEntity";
|
|
|
|
|
|
public static readonly BoundKeyFunction FocusChat = "FocusChatWindow";
|
2020-07-06 08:45:58 -05:00
|
|
|
|
public static readonly BoundKeyFunction FocusOOC = "FocusOOCWindow";
|
2020-07-08 05:18:16 -05:00
|
|
|
|
public static readonly BoundKeyFunction FocusAdminChat = "FocusAdminChatWindow";
|
2018-05-27 10:13:33 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenCharacterMenu = "OpenCharacterMenu";
|
2019-07-20 13:11:42 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenContextMenu = "OpenContextMenu";
|
2019-07-17 21:37:58 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenCraftingMenu = "OpenCraftingMenu";
|
2019-07-20 13:11:42 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenInventoryMenu = "OpenInventoryMenu";
|
2020-05-05 00:39:15 +02:00
|
|
|
|
public static readonly BoundKeyFunction SmartEquipBackpack = "SmartEquipBackpack";
|
|
|
|
|
|
public static readonly BoundKeyFunction SmartEquipBelt = "SmartEquipBelt";
|
2019-07-20 13:11:42 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenTutorial = "OpenTutorial";
|
|
|
|
|
|
public static readonly BoundKeyFunction SwapHands = "SwapHands";
|
2018-08-22 01:19:47 -07:00
|
|
|
|
public static readonly BoundKeyFunction ThrowItemInHand = "ThrowItemInHand";
|
2020-07-27 00:54:32 +02:00
|
|
|
|
public static readonly BoundKeyFunction TryPullObject = "TryPullObject";
|
|
|
|
|
|
public static readonly BoundKeyFunction MovePulledObject = "MovePulledObject";
|
2020-09-16 14:58:50 -07:00
|
|
|
|
public static readonly BoundKeyFunction ReleasePulledObject = "ReleasePulledObject";
|
2019-06-30 00:01:41 +02:00
|
|
|
|
public static readonly BoundKeyFunction ToggleCombatMode = "ToggleCombatMode";
|
2019-08-04 16:03:51 -07:00
|
|
|
|
public static readonly BoundKeyFunction MouseMiddle = "MouseMiddle";
|
2020-02-02 16:38:51 -05:00
|
|
|
|
public static readonly BoundKeyFunction OpenEntitySpawnWindow = "OpenEntitySpawnWindow";
|
|
|
|
|
|
public static readonly BoundKeyFunction OpenSandboxWindow = "OpenSandboxWindow";
|
|
|
|
|
|
public static readonly BoundKeyFunction OpenTileSpawnWindow = "OpenTileSpawnWindow";
|
2020-08-25 17:18:32 +02:00
|
|
|
|
public static readonly BoundKeyFunction OpenAdminMenu = "OpenAdminMenu";
|
2020-04-30 12:45:21 +02:00
|
|
|
|
public static readonly BoundKeyFunction TakeScreenshot = "TakeScreenshot";
|
|
|
|
|
|
public static readonly BoundKeyFunction TakeScreenshotNoUI = "TakeScreenshotNoUI";
|
2020-07-24 14:51:18 +02:00
|
|
|
|
public static readonly BoundKeyFunction Point = "Point";
|
2020-09-26 15:25:22 +02:00
|
|
|
|
public static readonly BoundKeyFunction ArcadeUp = "ArcadeUp";
|
|
|
|
|
|
public static readonly BoundKeyFunction ArcadeDown = "ArcadeDown";
|
|
|
|
|
|
public static readonly BoundKeyFunction ArcadeLeft = "ArcadeLeft";
|
|
|
|
|
|
public static readonly BoundKeyFunction ArcadeRight = "ArcadeRight";
|
|
|
|
|
|
public static readonly BoundKeyFunction Arcade1 = "Arcade1";
|
|
|
|
|
|
public static readonly BoundKeyFunction Arcade2 = "Arcade2";
|
|
|
|
|
|
public static readonly BoundKeyFunction Arcade3 = "Arcade3";
|
2018-05-27 10:13:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|