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

  1.  
  2.  
  3. #ifndef _Cat_H_
  4. #define _Cat_H_
  5.  
  6. #include "character.h"
  7.  
  8. class Cat : public Character
  9. {
  10. public:
  11.     Cat ( char * name );
  12.  
  13.     void registerAnims ();
  14.     void makeBrain     ();
  15.  
  16.     const char * getAttack      ( int & damage, float & prepareTime );
  17.     const char * getDamageReact ( float & time);
  18.  
  19. };
  20.  
  21. #endif