Gerard-Meier

PSI Code convention!

Mar 15th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. class Bar : public Foo
  2. {
  3. public:
  4.     Bar() : Foo(), _isAlive(false), _velocity(1.2f) {
  5.        
  6.     }
  7.     void killFoobar() {
  8.         while(1) {
  9.             break;
  10.         }
  11.     }
  12. private:
  13.     f32 _velocity;
  14.     bool _isAlive;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment