recrownedgtk/RecrownedAthenaeum/Input/IInputListener.cs

12 lines
235 B
C#

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