30 lines
566 B
C#
30 lines
566 B
C#
using System;
|
|
using _2DGAMELIB;
|
|
|
|
namespace SlaveMatrix
|
|
{
|
|
[Serializable]
|
|
public class 耳_羽D : 耳D
|
|
{
|
|
public bool 羽2_表示 = true;
|
|
|
|
public bool 羽1_表示 = true;
|
|
|
|
public bool 耳_表示 = true;
|
|
|
|
public bool 耳線1_表示 = true;
|
|
|
|
public bool 耳線2_表示 = true;
|
|
|
|
public 耳_羽D()
|
|
{
|
|
ThisType = GetType();
|
|
}
|
|
|
|
public override Ele GetEle(double DisUnit, ModeEventDispatcher Med, BodyColorSet 体配色)
|
|
{
|
|
return new 耳_羽(DisUnit, 配色指定, 体配色, Med, this);
|
|
}
|
|
}
|
|
}
|