forked from GNimrodG/RoadSigns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
34 lines (30 loc) · 851 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
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoadSigns
{
public class Config
{
public bool FadeEffects { get; set; }
public bool FlashEffect { get; set; }
public bool SignPillar { get; set; }
public Corner DisplayCorner { get; set; }
public List<SignGroup> SignGroups { get; set; }
public class SignGroup
{
public string Name { get; set; }
public bool UseText { get; set; }
public string Text { get; set; }
public Dictionary<string, string> Signs { get; set; }
}
public enum Corner
{
TopLeft,
TopRight,
BottomLeft,
BottomRight
}
}
}