12 lines
279 B
C#
12 lines
279 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using Gameplay.Net;
|
|||
|
|
|
|||
|
|
public partial class SROptions
|
|||
|
|
{
|
|||
|
|
[Category("功能锁"), DisplayName("重置功能锁状态")]
|
|||
|
|
public void ResetFunctionLockState()
|
|||
|
|
{
|
|||
|
|
NetHelper.SaveFunctionLock(0);
|
|||
|
|
}
|
|||
|
|
}
|