Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CustomAttributeType.cs
Go to the documentation of this file.
2
3namespace System.Reflection;
4
5[StructLayout(LayoutKind.Auto)]
6internal readonly struct CustomAttributeType
7{
8 private readonly string m_enumName;
9
11
13
15
17
19
21
23
24 public string EnumName => m_enumName;
25
26 public CustomAttributeType(CustomAttributeEncoding encodedType, CustomAttributeEncoding encodedArrayType, CustomAttributeEncoding encodedEnumType, string enumName)
27 {
28 m_encodedType = encodedType;
29 m_encodedArrayType = encodedArrayType;
30 m_encodedEnumType = encodedEnumType;
31 m_enumName = enumName;
33 }
34}
readonly CustomAttributeEncoding m_encodedEnumType
readonly CustomAttributeEncoding m_encodedType
CustomAttributeType(CustomAttributeEncoding encodedType, CustomAttributeEncoding encodedArrayType, CustomAttributeEncoding encodedEnumType, string enumName)
readonly CustomAttributeEncoding m_padding
readonly CustomAttributeEncoding m_encodedArrayType