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,31 @@
using System;
using System.IO;
namespace _2DGAMELIB;
//its the position of a joint
[Serializable]
public class Joi
{
public Vector2D Joint = Dat.Vec2DZero;
public Joi()
{
}
public Joi(Joi Joi)
{
Joint = Joi.Joint;
}
public Joi(Vector2D Joint)
{
this.Joint = Joint;
}
public Joi(ref Vector2D Joint)
{
this.Joint = Joint;
}
}