Files
SlaveMatrix-SDL/SlaveMatrix/SlaveMatrix/BodyPartClasses/鎖D.cs

24 lines
435 B
C#

using System;
using _2DGAMELIB;
namespace SlaveMatrix
{
[Serializable]
public class D : EleD
{
public bool 2_ = true;
public bool 1_ = true;
public D()
{
ThisType = GetType();
}
public override Ele GetEle(double DisUnit, ModeEventDispatcher Med, BodyColorSet )
{
return new (DisUnit, , , Med, this);
}
}
}