Split text input into its own event.

This commit is contained in:
Paul Chote
2013-10-30 17:40:12 +13:00
parent ae8475620d
commit d1c9c6d76d
5 changed files with 49 additions and 18 deletions

View File

@@ -19,6 +19,7 @@ namespace OpenRA
void ModifierKeys(Modifiers mods);
void OnKeyInput(KeyInput input);
void OnMouseInput(MouseInput input);
void OnTextInput(string text);
}
public enum MouseInputEvent { Down, Move, Up }