36 lines
755 B
C#
36 lines
755 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using _2DGAMELIB;
|
|
|
|
namespace SlaveMatrix
|
|
{
|
|
[Serializable]
|
|
public class 四足脇D : EleD
|
|
{
|
|
public bool 脇_表示 = true;
|
|
|
|
public bool 筋肉_表示 = true;
|
|
|
|
public double 筋肉濃度 = 1.0;
|
|
|
|
public List<EleD> UpperArm_接続 = new List<EleD>();
|
|
|
|
public 四足脇D()
|
|
{
|
|
ThisType = GetType();
|
|
}
|
|
|
|
public void UpperArm接続(EleD e)
|
|
{
|
|
UpperArm_接続.Add(e);
|
|
e.Par = this;
|
|
e.接続情報 = ConnectionInfo.四足脇_UpperArm_接続;
|
|
}
|
|
|
|
public override Ele GetEle(double DisUnit, ModeEventDispatcher Med, 体配色 体配色)
|
|
{
|
|
return new 四足脇(DisUnit, 配色指定, 体配色, Med, this);
|
|
}
|
|
}
|
|
}
|