NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Debug/SROptions.BatllePass.cs

13 lines
305 B
C#
Raw Normal View History

2025-01-13 14:00:26 +08:00
using System.ComponentModel;
public partial class SROptions
{
2025-02-24 15:16:36 +08:00
[Category("通行证"), DisplayName("可直接购买通行证")]
2025-02-12 17:59:07 +08:00
public bool IsDebugPurchase
2025-01-13 14:00:26 +08:00
{
2025-02-12 17:59:07 +08:00
get => BattlePassManager.Instance.IsDebug;
set => BattlePassManager.Instance.IsDebug = value;
2025-01-13 14:00:26 +08:00
}
2025-02-12 17:59:07 +08:00
2025-01-13 14:00:26 +08:00
}