cppbug

buggy cube - cube.hpp

Apr 25th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #pragma once
  2.  
  3. class Cube
  4. {
  5. public:
  6.     Cube(float a);
  7.     void draw() const;
  8.     void tick();
  9. private:
  10.     float a;
  11.     int angle;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment