using Microsoft.Xna.Framework.Input; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RecrownedAthenaeum.Input { public interface IInputListener { bool KeyboardStateChanged(KeyboardState state); bool MouseStateChanged(MouseState state); } }