Files
SlaveMatrix-SDL/SlaveMatrix/SlaveMatrix/BodyPartClasses/上着M_ドレス情報.cs
2025-05-07 10:45:18 -07:00

40 lines
644 B
C#

using System;
namespace SlaveMatrix
{
[Serializable]
public struct M_ドレス情報
{
public bool ;
public bool ;
public bool 1;
public bool 2;
public bool 3;
public bool IsShow
{
get
{
if (! && ! && !1 && !2)
{
return 3;
}
return true;
}
}
public void SetDefault()
{
= true;
= true;
1 = true;
2 = true;
3 = true;
}
}
}