Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CngUIPolicy.cs
Go to the documentation of this file.
2
3public sealed class CngUIPolicy
4{
5 public CngUIProtectionLevels ProtectionLevel { get; private set; }
6
7 public string? FriendlyName { get; private set; }
8
9 public string? Description { get; private set; }
10
11 public string? UseContext { get; private set; }
12
13 public string? CreationTitle { get; private set; }
14
15 public CngUIPolicy(CngUIProtectionLevels protectionLevel)
16 : this(protectionLevel, null)
17 {
18 }
19
20 public CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName)
21 : this(protectionLevel, friendlyName, null)
22 {
23 }
24
25 public CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description)
26 : this(protectionLevel, friendlyName, description, null)
27 {
28 }
29
30 public CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description, string? useContext)
31 : this(protectionLevel, friendlyName, description, useContext, null)
32 {
33 }
34
35 public CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description, string? useContext, string? creationTitle)
36 {
37 ProtectionLevel = protectionLevel;
38 FriendlyName = friendlyName;
39 Description = description;
40 UseContext = useContext;
41 CreationTitle = creationTitle;
42 }
43}
CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description, string? useContext, string? creationTitle)
CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description)
CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName, string? description, string? useContext)
CngUIPolicy(CngUIProtectionLevels protectionLevel)
CngUIPolicy(CngUIProtectionLevels protectionLevel, string? friendlyName)