Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. class CCamera
  2. {
  3. public:
  4.     virtual void Rotate( float x, float y, float z ) {}
  5.  
  6. };
  7. class CCam1stPerson : public CCamera
  8. {
  9. public:
  10.     void Rotate ( float x, float y, float z );
  11.  
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement