Initial Commit
This commit is contained in:
31
2DGAMELIB/_2DGAMELIB/Joi.cs
Normal file
31
2DGAMELIB/_2DGAMELIB/Joi.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace _2DGAMELIB;
|
||||
|
||||
|
||||
//its the position of a joint
|
||||
[Serializable]
|
||||
public class Joi
|
||||
{
|
||||
public Vector2D Joint = Dat.Vec2DZero;
|
||||
|
||||
public Joi()
|
||||
{
|
||||
}
|
||||
|
||||
public Joi(Joi Joi)
|
||||
{
|
||||
Joint = Joi.Joint;
|
||||
}
|
||||
|
||||
public Joi(Vector2D Joint)
|
||||
{
|
||||
this.Joint = Joint;
|
||||
}
|
||||
|
||||
public Joi(ref Vector2D Joint)
|
||||
{
|
||||
this.Joint = Joint;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user