Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. struct Point
  2. {
  3. public Int32 m_x, m_y;
  4. public Point()
  5. {
  6. m_x = m_y = 5;
  7. }
  8. }
  9.  
  10. class Rectangle
  11. {
  12. public Point m_topLeft, m_bottomRight;
  13. public Rectangle()
  14. {
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement