source: GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/include/IBRBillboardCloudTreeFrameListener.h @ 721

Revision 721, 713 bytes checked in by igarcia, 18 years ago (diff)
Line 
1#ifndef _IBRBILLBOARDCLOUDTREESFRAMELISTENER_H
2#define _IBRBILLBOARDCLOUDTREESFRAMELISTENER_H
3
4#include <OBAPrerequisites.h>
5#include <OBAOgreFrameListener.h>
6
7class IBRBillboardCloudTreeFrameListener : public OBA::OgreFrameListener
8{
9
10protected:
11
12public:
13        IBRBillboardCloudTreeFrameListener(Ogre::RenderWindow *win, bool useBufferedInputKeys = false, bool useBufferedInputMouse = false)
14        : OgreFrameListener(win, useBufferedInputKeys, useBufferedInputMouse)
15    {
16    }
17
18        ~IBRBillboardCloudTreeFrameListener()       
19    {
20    }
21
22        bool frameStarted(const Ogre::FrameEvent& evt)
23    {
24        // Call default
25        return OgreFrameListener::frameStarted(evt);       
26    }
27
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.