home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 06 General Architectures / 04 Christian / done.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-03  |  341 b   |  30 lines

  1.  
  2.  
  3. #ifndef _Done_H_
  4. #define _Done_H_
  5.  
  6. #include "ieexec.h"
  7.  
  8. class Character;
  9.  
  10. class Done : public IEExec
  11. {
  12.  
  13. public:
  14.  
  15.     Done();
  16.  
  17.     void init   ( IEOwner * owner );
  18.     bool update ();
  19.  
  20.     IEOwner * getOwner ();
  21.  
  22.     const char * getName();
  23.  
  24. private:
  25.     std::string m_name;
  26.     Character * m_owner;
  27. };
  28.  
  29. #endif
  30.