The WindowsInputEventManager is a class which can be used to read character-based input from the keyboard (as opposed to key-based input, as provided by the FlatRedBall Keyboard class). Character based input (where character refers to the char type) is useful for games which need to read string input from the keyboard. For example, games may need input for entering a player's name.
The WindowsInputEventManager class is currently only available in the FlatRedBall XNA PC projects. Eventually other platforms will have their own platform-specific classes.
Once added, the WindowsInputEventManager can be accessed in any class because it is static . In this example the code to handle input events exists in a Glue screen.
Notice that CustomDestroy unsubscribes from the events subscribed to in CustomInitialize .
[subpages depth="1"]