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

  1.  
  2. #ifndef _Motion_H_
  3. #define _Motion_H_
  4.  
  5. class Motion
  6. {
  7.  
  8. public:
  9.  
  10.     Motion();
  11.  
  12.     void 
  13.     bool update  ();
  14.  
  15. private:
  16.  
  17.     float m_time;
  18.     float m_clock;
  19.     float m_loop;
  20. };
  21.  
  22. #endif