home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 June / Game.EXE_06_2002.iso / Alawar / Lib / InputForGameExe / InputDeviceWindowsMouse.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-26  |  455 b   |  19 lines

  1. #ifndef INPUTDEVICEWINDOWSMOUSE_H
  2. #define INPUTDEVICEWINDOWSMOUSE_H
  3.  
  4. #include "InputDevice.h"
  5. #include "InputManager.h"
  6. #include <Nocopy.h>
  7.  
  8. class InputDeviceWindowsMouse : public InputDevice, private Nocopy
  9. {
  10. public:
  11.     virtual String get_name()const;
  12.     virtual String get_type()const;
  13.     void mouse_move(int x, int y);
  14.     void mouse_up(int key);
  15.     void mouse_down(int key);
  16. private:
  17.     int mouse_x, mouse_y;
  18. };
  19. #endif //INPUTDEVICEWINDOWSMOUSE_H