Initial Commit

This commit is contained in:
lewd-alt
2025-05-05 19:40:03 -07:00
parent b8812f4d8d
commit 2e6d5ccc6d
1025 changed files with 540249 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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;
}
public Vector2D_2(ref Vector2D v1, ref Vector2D v2)
{
this.v1 = v1;
this.v2 = v2;
}
}