10 lines
216 B
C#
10 lines
216 B
C#
using Robust.Server.Interfaces.Player;
|
|
|
|
namespace Content.Server.Interfaces.GameObjects.Components.Movement
|
|
{
|
|
public interface IRelayMoveInput
|
|
{
|
|
void MoveInputPressed(IPlayerSession session);
|
|
}
|
|
}
|