www.pudn.com > Tetris.rar > MGameTimerObserver.h


#ifndef __MGAMETIMEROBSERVER_H 
#define __MGAMETIMEROBSERVER_H 
 
 
// CLASS DECLARATION 
 
/** 
*  Observer class which is implemented by CEngine 
*  Called by CGameTimer 
*/ 
 
class MGameTimerObserver  
{ 
public:    
	virtual TInt DoGameFrameL() = 0; 
}; 
 
 
#endif