forked from TehCheat/MiscInformation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMiscInformationSettings.cs
32 lines (30 loc) · 1.3 KB
/
MiscInformationSettings.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
using ExileCore.Shared.Interfaces;
using ExileCore.Shared.Nodes;
using SharpDX;
namespace MiscInformation
{
public class MiscInformationSettings : ISettings
{
public MiscInformationSettings()
{
BackgroundColor = new ColorBGRA(0, 0, 0, 255);
AreaTextColor = new ColorBGRA(140, 200, 255, 255);
XphTextColor = new ColorBGRA(220, 190, 130, 255);
XphGetLeft = new ColorBGRA(220, 190, 130, 255);
TimeLeftColor = new ColorBGRA(220, 190, 130, 255);
FpsTextColor = new ColorBGRA(220, 190, 130, 255);
TimerTextColor = new ColorBGRA(220, 190, 130, 255);
LatencyTextColor = new ColorBGRA(220, 190, 130, 255);
}
public ToggleNode Enable { get; set; } = new ToggleNode(true);
public RangeNode<int> DrawXOffset { get; set; } = new RangeNode<int>(0, -150, 150);
public ColorNode BackgroundColor { get; set; }
public ColorNode AreaTextColor { get; set; }
public ColorNode XphTextColor { get; set; }
public ColorNode XphGetLeft { get; set; }
public ColorNode TimeLeftColor { get; set; }
public ColorNode FpsTextColor { get; set; }
public ColorNode TimerTextColor { get; set; }
public ColorNode LatencyTextColor { get; set; }
}
}