Advertisement
Guest User

Example.h

a guest
Dec 3rd, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. class Example
  2. {
  3. public:
  4.     Example();
  5.  
  6.     bool init();
  7.     void prepare(float dt);
  8.     void render();
  9.     void shutdown();
  10.  
  11.     void onResize(int width, int height);
  12. private:
  13.     float m_rotationAngle;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement