Initial Commit

This commit is contained in:
lewd-alt
2025-05-05 19:40:03 -07:00
parent b8812f4d8d
commit 2e6d5ccc6d
1025 changed files with 540249 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
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()
{
}
public JointS(Difs Difs, Par Par, int Index)
{
this.Difs = Difs;
Path = Par.GetPath();
this.Index = Index;
}
}