1
0
Fork 0

Prepare Rectangle.cs and Vector2.cs to be promoted to a gist!

This commit is contained in:
Starbeamrainbowlabs 2017-04-01 10:17:36 +01:00
parent 53c43f10fc
commit be15bf85cb
2 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,11 @@ namespace SBRL.Utilities
/// <summary>
/// Represents a rectangle in 2D space.
/// </summary>
/// <version>v0.1</version>
/// <changelog>
/// v0.1 - 1st April 2017
/// - Added this changelog!
/// </changelog>
public struct Rectangle
{
/// <summary>

View File

@ -6,6 +6,11 @@ namespace SBRL.Utilities
/// Represents a single point in 2D space.
/// May also be used to represent a direction with a magnitude.
/// </summary>
/// <version>v0.1</version>
/// <changelog>
/// v0.1 - 1st April 2017
/// - Added this changelog
/// </changelog>
public struct Vector2
{
/// <summary>