Files
SlaveMatrix-SDL/SlaveMatrix/SlaveMatrix/BodyPartClasses/ShoulderD.cs
Absolutely disgusting b7cd096825 Added rename Shoulder
2025-11-04 09:19:00 +04:00

52 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using _2DGAMELIB;
namespace SlaveMatrix
{
[Serializable]
public class ShoulderD : EleD
{
public bool _脇_表示 = true;
public bool _筋肉_表示;
public bool Shoulder_表示 = true;
public bool Shoulder_虫性_甲殻1_表示;
public bool Shoulder_虫性_甲殻2_表示;
public bool Shoulder_傷I1_表示;
public bool Shoulder_傷I2_表示;
public bool Shoulder_傷I3_表示;
public bool Shoulder_傷I4_表示;
public bool Shoulder_シャツ_表示;
public bool Shoulder_ナース_表示;
public List<EleD> _接続 = new List<EleD>();
public ShoulderD()
{
ThisType = GetType();
}
public void (EleD e)
{
_接続.Add(e);
e.Par = this;
e. = ConnectionInfo.Shoulder_上腕_接続;
}
public override Ele GetEle(double DisUnit, Med Med, )
{
return new Shoulder(DisUnit, , , Med, this);
}
}
}