Renamed Joi to JointPoint
This commit is contained in:
24
2DGAMELIB/_2DGAMELIB/JointPoint.cs
Normal file
24
2DGAMELIB/_2DGAMELIB/JointPoint.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user