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

  1. #ifndef __INPUTCREATORWINDOWS_H__
  2. #define __INPUTCREATORWINDOWS_H__
  3.  
  4. #include "InputDeviceWindowsKeyboard.h"
  5. #include "InputDeviceWindowsMouse.h"
  6. #include <Nocopy.h>
  7.  
  8. class InputCreatorWindows : private Nocopy
  9. {
  10. public:
  11.     void key_down(int scan_code);
  12.     void key_up(int scan_code);
  13.     void key_char(int scan_code);
  14.     void mouse_up(int key );
  15.     void mouse_down(int key );
  16.     void mouse_move(int x, int y);
  17. private:
  18.     InputDeviceWindowsKeyboard keyboard;
  19.     InputDeviceWindowsMouse mouse;
  20. };
  21.  
  22. #endif //__INPUTCREATORWINDOWS_H__