Files
tbd-station-14/Content.Shared/GameObjects/Components/Movement/IRelayMoveInput.cs
2020-06-24 02:21:20 +02:00

10 lines
195 B
C#

using Robust.Shared.Players;
namespace Content.Shared.GameObjects.Components.Movement
{
public interface IRelayMoveInput
{
void MoveInputPressed(ICommonSession session);
}
}