11 lines
183 B
C#
11 lines
183 B
C#
using UnityEngine;
|
|
|
|
namespace MegaKoop.Game.Networking
|
|
{
|
|
public interface ICharacterInputSource
|
|
{
|
|
Vector2 MoveInput { get; }
|
|
bool JumpPressed { get; }
|
|
}
|
|
}
|