2019-01-13 20:22:53 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2018-11-30 02:41:06 +00:00
|
|
|
|
|
2018-12-04 13:45:09 +00:00
|
|
|
|
namespace RecrownedAthenaeum.Input
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
|
|
|
|
class InputListener : IInputListener
|
|
|
|
|
{
|
|
|
|
|
public bool KeyboardStateChanged(KeyboardState state)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool MouseStateChanged(MouseState state)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|