14 lines
452 B
C#
14 lines
452 B
C#
|
|
using SS14.Shared.Input;
|
||
|
|
|
||
|
|
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";
|
||
|
|
}
|
||
|
|
}
|