14 lines
276 B
C#
14 lines
276 B
C#
namespace cfg
|
|
{
|
|
public partial class EventMowForTreasureTool
|
|
{
|
|
public bool IsCanBreakWithTool(int type)
|
|
{
|
|
return type switch
|
|
{
|
|
1 or 3 => IsSuperBreak,
|
|
_ => true
|
|
};
|
|
}
|
|
}
|
|
} |