using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ANX.Framework.Input { public static class Keyboard { public static KeyboardState GetState() { throw new NotImplementedException(); } public static KeyboardState GetState (PlayerIndex playerIndex) { throw new NotImplementedException(); } } }