Addsy

circle.hpp

Apr 13th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #if !defined CIRCLE_HPP
  2. #define CIRCLE_HPP
  3. #include "shape.hpp"
  4.  
  5. class Circle : public Shape{
  6. public :
  7.     Circle (const Vector2D& location);
  8. };
  9.  
  10.  
  11.  
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment