Files
SlaveMatrix-SDL/2DGAMELIB/_2DGAMELIB/Vector2D_2.cs
lewd-alt 8fb31d38bb linting
removed some dead code and fixed a few bugs i introduced
2025-08-03 13:09:54 -07:00

19 lines
255 B
C#

using System;
namespace _2DGAMELIB
{
[Serializable]
public struct Vector2D_2
{
public Vector2D v1;
public Vector2D v2;
public Vector2D_2(Vector2D v1, Vector2D v2)
{
this.v1 = v1;
this.v2 = v2;
}
}
}