1 /* 2 * Copyright 2007 Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com 7 * Ryan Leavengood, leavengood@gmail.com 8 */ 9 #ifndef _JOYSTICKS_H 10 #define _JOYSTICKS_H 11 12 13 #include <Application.h> 14 15 class JoyWin; 16 class BWindow; 17 18 19 class Joysticks : public BApplication 20 { 21 public: 22 Joysticks(const char *signature); 23 ~Joysticks(); 24 25 virtual void ReadyToRun(); 26 27 protected: 28 JoyWin* fJoywin; 29 30 }; 31 32 33 #endif /* _JOYSTICKS_H */ 34