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
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly BoundKeyFunction SwapHands = "SwapHands";
|
|
|
|
|
|
public static readonly BoundKeyFunction Drop = "Drop";
|
|
|
|
|
|
public static readonly BoundKeyFunction ActivateItemInHand = "ActivateItemInHand";
|
|
|
|
|
|
public static readonly BoundKeyFunction OpenCharacterMenu = "OpenCharacterMenu";
|
2018-08-08 11:43:49 -07:00
|
|
|
|
public static readonly BoundKeyFunction ExamineEntity = "ExamineEntity";
|
2018-08-22 01:19:47 -07:00
|
|
|
|
public static readonly BoundKeyFunction UseItemInHand = "UseItemInHand"; // use hand item on world entity
|
|
|
|
|
|
public static readonly BoundKeyFunction ActivateItemInWorld = "ActivateItemInWorld"; // default action on world entity
|
|
|
|
|
|
public static readonly BoundKeyFunction ThrowItemInHand = "ThrowItemInHand";
|
2018-11-21 20:58:11 +01:00
|
|
|
|
public static readonly BoundKeyFunction OpenContextMenu = "OpenContextMenu";
|
2019-04-13 09:45:09 +02:00
|
|
|
|
public static readonly BoundKeyFunction FocusChat = "FocusChatWindow";
|
2018-05-27 10:13:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|