Remove hardcoded ghosting from MoverSystem.

This commit is contained in:
Pieter-Jan Briers
2020-04-18 12:10:50 +02:00
parent 8076ecfc2e
commit 028ca7a732
3 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
using Robust.Server.Interfaces.Player;
namespace Content.Server.Interfaces.GameObjects.Components.Movement
{
public interface IRelayMoveInput
{
void MoveInputPressed(IPlayerSession session);
}
}