15 lines
300 B
C#
Raw Normal View History

2011-11-09 16:36:09 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2011-11-14 16:19:58 +00:00
using ANX.Framework.Input;
2011-11-09 16:36:09 +00:00
namespace ANX.Framework.NonXNA
{
public interface IKeyboard
{
2011-11-14 16:19:58 +00:00
KeyboardState GetState();
KeyboardState GetState(PlayerIndex playerIndex);
2011-11-09 16:36:09 +00:00
}
}