Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NamespaceData.cs
Go to the documentation of this file.
2
4
5internal sealed class NamespaceData
6{
7 public readonly StringHandle Name;
8
9 public readonly string FullName;
10
12
14
16
18
20 {
21 Name = name;
22 FullName = fullName;
23 Parent = parent;
24 NamespaceDefinitions = namespaceDefinitions;
25 TypeDefinitions = typeDefinitions;
26 ExportedTypes = exportedTypes;
27 }
28}
readonly ImmutableArray< TypeDefinitionHandle > TypeDefinitions
readonly ImmutableArray< ExportedTypeHandle > ExportedTypes
readonly NamespaceDefinitionHandle Parent
NamespaceData(StringHandle name, string fullName, NamespaceDefinitionHandle parent, ImmutableArray< NamespaceDefinitionHandle > namespaceDefinitions, ImmutableArray< TypeDefinitionHandle > typeDefinitions, ImmutableArray< ExportedTypeHandle > exportedTypes)
readonly ImmutableArray< NamespaceDefinitionHandle > NamespaceDefinitions