home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / include / mmsrvr.h < prev    next >
C/C++ Source or Header  |  1995-05-08  |  236b  |  17 lines

  1. // ---------- mmsrvr.h
  2.  
  3. #ifndef  MMSRVR_H
  4. #define  MMSRVR_H
  5.  
  6. #include "server.h"
  7.  
  8. class MousemoveServer : public Server  {
  9.   int ox, oy;
  10. public:
  11.   MousemoveServer()
  12.     { ox = 0; oy = 0; }
  13.   void check(Folder&);
  14. };
  15.  
  16. #endif
  17.