simonradev

Square

Jun 30th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.16 KB | None | 0 0
  1. namespace DrawingTool
  2. {
  3.     public class Square : Figure
  4.     {
  5.         public Square(int firstSide) :
  6.             base(firstSide)
  7.         {
  8.         }
  9.     }
  10. }
Add Comment
Please, Sign In to add comment