Files
tbd-station-14/Content.Server/Interfaces/GameObjects/Components/Movement/IRelayMoveInput.cs
2020-04-18 12:10:50 +02:00

10 lines
216 B
C#

using Robust.Server.Interfaces.Player;
namespace Content.Server.Interfaces.GameObjects.Components.Movement
{
public interface IRelayMoveInput
{
void MoveInputPressed(IPlayerSession session);
}
}