mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 03:51:36 +08:00
20 lines
495 B
C#
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;
|
|
}
|
|
}
|