blob: 67f4e60f215501556edd5d5abc43638df64c477e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// SDLKeyboardEvent.m
//
#import "SDLKeyboardEvent.h"
SDLKeyboardEvent const SDLKeyboardEventKeypress = @"KEYPRESS";
SDLKeyboardEvent const SDLKeyboardEventSubmitted = @"ENTRY_SUBMITTED";
SDLKeyboardEvent const SDLKeyboardEventCancelled = @"ENTRY_CANCELLED";
SDLKeyboardEvent const SDLKeyboardEventAborted = @"ENTRY_ABORTED";
SDLKeyboardEvent const SDLKeyboardEventVoice = @"ENTRY_VOICE";
|