GameChatKeyboardHandler.h 458 B

123456789101112131415161718192021222324
  1. /*
  2. * GameChatKeyboardHandler.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #import <UIKit/UIKit.h>
  12. #include <SDL_events.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface GameChatKeyboardHandler : NSObject
  15. + (void)sendKeyEventWithKeyCode:(SDL_KeyCode)keyCode;
  16. @end
  17. NS_ASSUME_NONNULL_END