no more windows??

This commit is contained in:
lewd-alt
2025-05-07 10:45:18 -07:00
parent eecd2a0399
commit 9d89d2cb6a
933 changed files with 408908 additions and 407973 deletions

View File

@@ -1,23 +1,24 @@
using System;
namespace _2DGAMELIB;
[Serializable]
public struct Vector2D_2
namespace _2DGAMELIB
{
public Vector2D v1;
[Serializable]
public struct Vector2D_2
{
public Vector2D v1;
public Vector2D v2;
public Vector2D v2;
public Vector2D_2(Vector2D v1, Vector2D v2)
{
this.v1 = v1;
this.v2 = 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;
}
public Vector2D_2(ref Vector2D v1, ref Vector2D v2)
{
this.v1 = v1;
this.v2 = v2;
}
}
}