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

10 lines
195 B
C#
Raw Normal View History

2020-06-24 02:21:20 +02:00
using Robust.Shared.Players;
namespace Content.Shared.GameObjects.Components.Movement
{
public interface IRelayMoveInput
{
void MoveInputPressed(ICommonSession session);
}
}