-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
31 lines (29 loc) · 769 Bytes
/
Copy pathConfig.cs
File metadata and controls
31 lines (29 loc) · 769 Bytes
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
31
using Rocket.API;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnQueue
{
public class Config : IRocketPluginConfiguration
{
public bool sync;
public bool BypassMaxPlayers;
public byte PrependPosition;
public byte MaxPlayers;
public byte ReservedSlots;
public int Interval;
public string Permission;
public void LoadDefaults()
{
sync = false;
BypassMaxPlayers = false;
PrependPosition = 2;
MaxPlayers = 24;
ReservedSlots = 48;
Interval = 10;
Permission = "bypass.queue";
}
}
}