23 lines
462 B
C#
23 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Xna.Framework.Input;
|
|
|
|
namespace RhythmBullet.Utilities.Input
|
|
{
|
|
class InputListener : IInputListener
|
|
{
|
|
public bool KeyboardStateChanged(KeyboardState state)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public bool MouseStateChanged(MouseState state)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|