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

  1.  
  2.  
  3. #include "ieowner.h"
  4. #include "ie.h"
  5.  
  6. void IEOwner::think ()
  7. {
  8.     if ( m_brain )
  9.         m_brain->update();
  10. }
  11.