18 lines
342 B
C#
18 lines
342 B
C#
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;
|
|
}
|
|
}
|
|
}
|