Renamed Joi to JointPoint

This commit is contained in:
2026-06-13 21:20:32 +02:00
parent 035588e3db
commit d193583f37
10 changed files with 51 additions and 50 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.IO;
namespace _2DGAMELIB
{
//its the position of a joint
[Serializable]
public class JointPoint
{
public Vector2D Joint = DataConsts.Vec2DZero;
public JointPoint(JointPoint JointPoint)
{
Joint = JointPoint.Joint;
}
public JointPoint(Vector2D Joint)
{
this.Joint = Joint;
}
}
}