MGameTimerObserver.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef __MGAMETIMEROBSERVER_H
  2. #define __MGAMETIMEROBSERVER_H
  3. // CLASS DECLARATION
  4. /**
  5. *  Observer class which is implemented by CEngine
  6. *  Called by CGameTimer
  7. */
  8. class MGameTimerObserver 
  9. {
  10. public:   
  11. virtual TInt DoGameFrameL() = 0;
  12. };
  13. #endif