Mac OS X gamepad emulator for serial RC transmitters
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1234567891011121314151617181920212223
  1. //
  2. // Thread.h
  3. // SerialGamepad
  4. //
  5. // Created by Thomas Buck on 15.12.15.
  6. // Copyright © 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class MainWindow;
  10. @interface Thread : NSThread
  11. @property BOOL running;
  12. @property int fd;
  13. @property (strong) NSString *portName;
  14. @property (weak) MainWindow *mainWindow;
  15. - (id)initWithWindow:(MainWindow *)window;
  16. - (NSInteger)openPort;
  17. @end