25 lines
334 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|