//  @ Project : hello eagl ++
//  @ File Name : callbacks.h
//  @ Date : 2008-4-8
//  @ Author : kongfu.yang
//  @ Company : http://www.play3d.net
//  @ Copyright : 2008-4, Example source license. 
//        By keep this header comment, 
//        you may use this source file in your project for non-commercial or commercial purpose.

#ifndef __EALG_APP_CALLBACKS_H__
#define __EALG_APP_CALLBACKS_H__

class glApp
{
public:
virtual void init(void){}
virtual void rendering(void){}
virtual void accelerating(float x, float y, float z){}

};

extern glApp * getApp(void);

#endif // __EAGL_APP_CALLBACKS_H__
