* Migrated Interaction system to the new Input system. * Contexts are now set up in content.
16 lines
617 B
C#
16 lines
617 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";
|
|
public static readonly BoundKeyFunction ExamineEntity = "ExamineEntity";
|
|
public static readonly BoundKeyFunction UseItemInHand = "UseItemInHand";
|
|
}
|
|
}
|