12 lines
235 B
C#
12 lines
235 B
C#
using Microsoft.Xna.Framework.Input;
|
|
|
|
namespace RecrownedAthenaeum.Input
|
|
{
|
|
public interface IInputListener
|
|
{
|
|
bool KeyboardStateChanged(KeyboardState state);
|
|
|
|
bool MouseStateChanged(MouseState state);
|
|
}
|
|
}
|