home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / Dragonfly.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-06  |  206 b   |  14 lines

  1. #ifndef __Dragonfly_h__
  2. #define __Dragonfly_h__
  3.  
  4. #include "Drone.h"
  5.  
  6. class Dragonfly: public Drone{
  7. public:
  8.     Dragonfly(Client* client);
  9.     virtual ~Dragonfly();
  10.  
  11. };
  12.  
  13. #endif    /* __Dragonfly_h__ */
  14.