using UnityEngine; namespace MegaKoop.Game.Networking { public interface ICharacterInputSource { Vector2 MoveInput { get; } bool JumpPressed { get; } } }