recrownedathenaeum/RecrownedAthenaeum/Input/InputListener.cs

18 lines
342 B
C#
Raw Normal View History

2019-01-13 20:22:53 +00: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;
}
}
}