Skip to content

Instantly share code, notes, and snippets.

@RolandWarburton
Created August 9, 2019 07:39
Show Gist options
  • Save RolandWarburton/690276789b9e6fc6be26dcb058dff994 to your computer and use it in GitHub Desktop.
Save RolandWarburton/690276789b9e6fc6be26dcb058dff994 to your computer and use it in GitHub Desktop.
Tiens Overloads
public Rectangle() : base(10, 10, 10, 10, SwinGame.ColorAliceBlue())
{
}
public Rectangle(Color color) : this(10, 10, 10, 10, color)
{
Rectangle otherrect = new Rectangle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment