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

12 lines
279 B
C#
Raw Normal View History

2025-04-11 15:18:23 +08:00
using System.Collections.Generic;
using System.ComponentModel;
using Gameplay.Net;
public partial class SROptions
{
[Category("功能锁"), DisplayName("重置功能锁状态")]
public void ResetFunctionLockState()
{
NetHelper.SaveFunctionLock(0);
}
}