forked from RazzSG/ClickerClass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClickerConfig.cs
More file actions
41 lines (33 loc) · 1.48 KB
/
ClickerConfig.cs
File metadata and controls
41 lines (33 loc) · 1.48 KB
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
35
36
37
38
39
40
41
using System.ComponentModel;
using Terraria.ModLoader.Config;
namespace ClickerClass
{
[Label("$Mods.ClickerClass.ClickerConfigClient.Label")]
public class ClickerConfigClient : ModConfig
{
public override ConfigScope Mode => ConfigScope.ClientSide;
// Automatically set by tModLoader
public static ClickerConfigClient Instance;
[Header("$Mods.ClickerClass.ClickerConfigClient.Header.GeneralOptions")]
[Label("$Mods.ClickerClass.ClickerConfigClient.ShowClassTags.Label")]
[Tooltip("$Mods.ClickerClass.ClickerConfigClient.ShowClassTags.Tooltip")]
[DefaultValue(true)]
public bool ShowClassTags;
[Label("$Mods.ClickerClass.ClickerConfigClient.ShowEffectSuggestion.Label")]
[Tooltip("$Mods.ClickerClass.ClickerConfigClient.ShowEffectSuggestion.Tooltip")]
[DefaultValue(true)]
public bool ShowEffectSuggestion;
[Label("$Mods.ClickerClass.ClickerConfigClient.ShowCustomCursors.Label")]
[Tooltip("$Mods.ClickerClass.ClickerConfigClient.ShowCustomCursors.Tooltip")]
[DefaultValue(true)]
public bool ShowCustomCursors;
[Label("$Mods.ClickerClass.ClickerConfigClient.ShowClickIndicator.Label")]
[Tooltip("$Mods.ClickerClass.ClickerConfigClient.ShowClickIndicator.Tooltip")]
[DefaultValue(false)]
public bool ShowClickIndicator;
[Label("$Mods.ClickerClass.ClickerConfigClient.ShowOthersClickIndicator.Label")]
[Tooltip("$Mods.ClickerClass.ClickerConfigClient.ShowOthersClickIndicator.Tooltip")]
[DefaultValue(true)]
public bool ShowOthersClickIndicator;
}
}