Files
crystall-punk-14/Content.Server/Interfaces/GameObjects/Components/Movement/IRelayMoveInput.cs

10 lines
216 B
C#
Raw Normal View History

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