2021-04-19 01:28:29 +02:00
|
|
|
/*
|
2022-09-29 11:47:31 +02:00
|
|
|
* GameChatKeyboardHandler.h, part of VCMI engine
|
2021-04-19 01:28:29 +02:00
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2023-01-22 14:34:16 +02:00
|
|
|
#include <SDL_events.h>
|
|
|
|
|
2021-04-19 01:28:29 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2022-09-29 11:47:31 +02:00
|
|
|
@interface GameChatKeyboardHandler : NSObject
|
2021-04-19 01:28:29 +02:00
|
|
|
|
2023-01-22 14:34:16 +02:00
|
|
|
+ (void)sendKeyEventWithKeyCode:(SDL_KeyCode)keyCode;
|
2021-04-19 01:28:29 +02:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|