18 lines
342 B
C#
Raw Normal View History

2019-01-13 14:22:53 -06:00
using Microsoft.Xna.Framework.Input;
namespace RecrownedAthenaeum.Input
{
class InputListener : IInputListener
{
public bool KeyboardStateChanged(KeyboardState state)
{
return true;
}
public bool MouseStateChanged(MouseState state)
{
return true;
}
}
}