mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
13 lines
326 B
C#
13 lines
326 B
C#
using System.ComponentModel;
|
|
|
|
namespace EasyTools.Configs
|
|
{
|
|
public class CustomRoleConfig
|
|
{
|
|
[Description("开启3114?")]
|
|
public bool spawn_scp_3114 { get; set; } = false;
|
|
[Description("当有多少人时才会生成3114?")]
|
|
public int spawn_scp_3114_limit { get; set; } = 8;
|
|
}
|
|
}
|