OPTPiX SpriteStudio SDK
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
ssplayer_render_gl.h
1 #ifndef __SSPLAYER_RENDER_GL__
2 #define __SSPLAYER_RENDER_GL__
3 
4 #include "../Animator/ssplayer_render.h"
5 
6 struct SsPartState;
7 
8 class SsRenderGL : public ISsRenderer
9 {
10 private:
11  //static bool m_isInit;
12 
13 public:
14  SsRenderGL(){}
15  virtual ~SsRenderGL(){}
16 
17  virtual void initialize();
18  virtual void renderSetup();
19  virtual void renderPart( SsPartState* state );
20 };
21 
22 #endif