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

  1.  
  2.  
  3. #include "ieexec.h"
  4.  
  5. IEExec::IEExec()
  6. {
  7. }
  8.  
  9. bool IEExec::start ()
  10. {
  11.     return false;
  12. }
  13.  
  14. bool IEExec::finish ()
  15. {
  16.     return false;
  17. }
  18.  
  19. void IEExec::reset ()
  20. {
  21.     // nothing by default
  22. }
  23.