Files
lewd-alt 8fb31d38bb linting
removed some dead code and fixed a few bugs i introduced
2025-08-03 13:09:54 -07:00

44 lines
682 B
C#

using System;
using System.Collections.Generic;
namespace _2DGAMELIB
{
[Serializable]
public class Joints
{
public List<Joint> Joins = new List<Joint>();
public void JoinP()
{
foreach (Joint join in Joins)
{
join.JoinP();
}
}
public void JoinPA()
{
foreach (Joint join in Joins)
{
join.JoinPA();
}
}
}
[Serializable]
public class JointS
{
public Difs Difs;
public List<int> Path;
public int Index;
public JointS(Difs Difs, Par Par, int Index)
{
this.Difs = Difs;
Path = Par.GetPath();
this.Index = Index;
}
}
}