Files
SlaveMatrix-SDL/2DGAMELIB/_2DGAMELIB/Joi.cs
2026-06-13 20:21:55 +02:00

25 lines
334 B
C#

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