Files
lewd-alt 8fb31d38bb linting
removed some dead code and fixed a few bugs i introduced
2025-08-03 13:09:54 -07:00

25 lines
327 B
C#

using System;
using System.IO;
namespace _2DGAMELIB
{
//its the position of a joint
[Serializable]
public class Joi
{
public Vector2D Joint = Dat.Vec2DZero;
public Joi(Joi Joi)
{
Joint = Joi.Joint;
}
public Joi(Vector2D Joint)
{
this.Joint = Joint;
}
}
}