using System; using Abstractions; namespace Infrastructure { public class PlayerTwoInput : IInputService, IDisposable { public float GetHorizontalMovement() { throw new System.NotImplementedException(); } public bool IsActionPressed() { throw new System.NotImplementedException(); } public void Dispose() { } } }