2021-04-19 02:28:29 +03:00
|
|
|
/*
|
2022-09-29 12:47:31 +03:00
|
|
|
* GameChatKeyboardHandler.h, part of VCMI engine
|
2021-04-19 02:28:29 +03: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
|
|
|
|
*
|
|
|
|
*/
|
2024-03-29 07:48:52 +02:00
|
|
|
#pragma once
|
2021-04-19 02:28:29 +03:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2023-01-22 15:34:16 +03:00
|
|
|
#include <SDL_events.h>
|
|
|
|
|
2021-04-19 02:28:29 +03:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2022-09-29 12:47:31 +03:00
|
|
|
@interface GameChatKeyboardHandler : NSObject
|
2021-04-19 02:28:29 +03:00
|
|
|
|
2023-01-22 15:34:16 +03:00
|
|
|
+ (void)sendKeyEventWithKeyCode:(SDL_KeyCode)keyCode;
|
2021-04-19 02:28:29 +03:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|