Advertisement
Guest User

Boundable.h

a guest
Apr 26th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #ifndef BOUNDABLE_H
  2. #define BOUNDABLE_H
  3.  
  4. class Boundable
  5. {
  6. public:
  7.     virtual sf::FloatRect getBoundingRect() const { return sf::FloatRect(); }
  8. };
  9.  
  10.  
  11. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement