Files
SlaveMatrix-SDL/2DGAMELIB/_2DGAMELIB/JointsD.cs
lewd-alt 8fb31d38bb linting
removed some dead code and fixed a few bugs i introduced
2025-08-03 13:09:54 -07:00

21 lines
300 B
C#

using System;
using System.Collections.Generic;
namespace _2DGAMELIB
{
[Serializable]
public class JointsD
{
public List<JointD> Joins = new List<JointD>();
public void JoinPA()
{
foreach (JointD join in Joins)
{
join.JoinPA();
}
}
}
}