feat: SCP-3114生成机制

This commit is contained in:
3cxc
2026-02-12 15:46:14 +08:00
parent 453c90f0c3
commit fd9158244e
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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;
}
}