23 lines
436 B
C#
23 lines
436 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |