Files
EasyTools/Configs/CustomRoleConfig.cs
2026-02-12 15:46:14 +08:00

20 lines
495 B
C#

using LabApi.Loader.Features.Paths;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}