using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; namespace ExplorerBeta.Input { public interface IAbstractInput { void Init(); Vector2 MousePosition { get; } bool GetKeyDown(KeyCode key); bool GetKey(KeyCode key); bool GetMouseButtonDown(int btn); bool GetMouseButton(int btn); } }