GameChatKeyboardHanlder.h 445 B

1234567891011121314151617181920212223
  1. /*
  2. * GameChatKeyboardHanlder.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. #import <UIKit/UIKit.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface GameChatKeyboardHanlder : NSObject
  13. @property (nonatomic, weak) UITextField * textFieldSDL;
  14. - (void)triggerInput;
  15. @end
  16. NS_ASSUME_NONNULL_END