using Microsoft.Xna.Framework.Input; namespace RecrownedAthenaeum.Input { public interface IInputListener { bool KeyboardStateChanged(KeyboardState state); bool MouseStateChanged(MouseState state); } }