Addsy

square.hpp

Apr 13th, 2015
70
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 SQUARE_HPP
  2. #define SQUARE_HPP
  3. #include "shape.hpp"
  4.  
  5. class Square : public Shape{
  6. public :
  7.     Square (const Vector2D& location);
  8. };
  9.  
  10.  
  11.  
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment