home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 06 General Architectures / 04 Christian / characterexec.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-29  |  375 b   |  35 lines

  1.  
  2. #include "characterexec.h"
  3.  
  4.  
  5. CharacterExec::CharacterExec ()
  6. {
  7.     m_owner = NULL;
  8. }
  9.  
  10. void CharacterExec::init ()
  11. {
  12.     return;
  13. }
  14.  
  15. bool CharacterExec::start  ()
  16. {
  17.     return false;
  18. }
  19.  
  20. bool CharacterExec::finish ()
  21. {
  22. }
  23.  
  24. void CharacterExec::reset ()
  25. {
  26. }
  27.  
  28. IEOwner * CharacterExec::getOwner ()
  29. {
  30.     return m_owner;
  31. }
  32.  
  33. const char * getName()
  34. {
  35.