source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/StopAndWaitTraverser.h @ 2800

Revision 2800, 505 bytes checked in by mattausch, 16 years ago (diff)

friendly culling debug version with timers, no materials

RevLine 
[2757]1#ifndef __STOPANDWAITTRAVERSER_H
2#define __STOPANDWAITTRAVERSER_H
3
4#include "RenderTraverser.h"
5
6
[2776]7namespace CHCDemoEngine
[2757]8{
9
10/** Abstract class implementing a scene traversal for rendering.
11*/
12class StopAndWaitTraverser: public RenderTraverser
13{
14public:
[2767]15
[2757]16        StopAndWaitTraverser();
17
[2800]18        int GetType() const { return STOP_AND_WAIT; }
[2767]19
[2800]20
[2767]21protected:
22        /** Traverses and renders the scene with the specified method
[2757]23        */
[2767]24        virtual void Traverse();
25
[2757]26};
27
28}
29
30#endif // __STOPANDWAITTRAVERSER_H
Note: See TracBrowser for help on using the repository browser.