2011-11-14 16:19:58 +00:00

15 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ANX.Framework.Input;
namespace ANX.Framework.NonXNA
{
public interface IKeyboard
{
KeyboardState GetState();
KeyboardState GetState(PlayerIndex playerIndex);
}
}