generated from Misaka-SL-Project/TemplatePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.cs
30 lines (27 loc) · 889 Bytes
/
Config.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Exiled.API.Interfaces;
using System.ComponentModel;
namespace BetterTeslaGates
{
public class Config : IConfig
{
[Description("If the plugin is enabled or not.")]
public bool IsEnabled { get; set; } = true;
public bool Debug { get; set; } = false;
[Description("Available items that could disable the tesla gate")]
public List<ItemType> RequiredItems { get; set; } = new List<ItemType>()
{
ItemType.KeycardMTFPrivate,
ItemType.KeycardContainmentEngineer,
ItemType.KeycardMTFOperative,
ItemType.KeycardMTFCaptain,
ItemType.KeycardContainmentEngineer,
ItemType.KeycardFacilityManager,
ItemType.KeycardO5
};
}
}