TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ defaultAliases

Dictionary<Type, string> Terraria.ModLoader.MonoModHooks.defaultAliases
staticprivate
Initial value:
{
{
typeof(object),
"object"
},
{
typeof(bool),
"bool"
},
{
typeof(float),
"float"
},
{
typeof(double),
"double"
},
{
"decimal"
},
{
typeof(byte),
"byte"
},
{
"sbyte"
},
{
typeof(short),
"short"
},
{
typeof(ushort),
"ushort"
},
{
typeof(int),
"int"
},
{
typeof(uint),
"uint"
},
{
typeof(long),
"long"
},
{
typeof(ulong),
"ulong"
},
{
typeof(char),
"char"
},
{
typeof(string),
"string"
}
}

Definition at line 27 of file MonoModHooks.cs.

28 {
29 {
30 typeof(object),
31 "object"
32 },
33 {
34 typeof(bool),
35 "bool"
36 },
37 {
38 typeof(float),
39 "float"
40 },
41 {
42 typeof(double),
43 "double"
44 },
45 {
47 "decimal"
48 },
49 {
50 typeof(byte),
51 "byte"
52 },
53 {
55 "sbyte"
56 },
57 {
58 typeof(short),
59 "short"
60 },
61 {
62 typeof(ushort),
63 "ushort"
64 },
65 {
66 typeof(int),
67 "int"
68 },
69 {
70 typeof(uint),
71 "uint"
72 },
73 {
74 typeof(long),
75 "long"
76 },
77 {
78 typeof(ulong),
79 "ulong"
80 },
81 {
82 typeof(char),
83 "char"
84 },
85 {
86 typeof(string),
87 "string"
88 }
89 };

Referenced by Terraria.ModLoader.MonoModHooks.StringRep().