mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
15 lines
593 B
C#
15 lines
593 B
C#
namespace AssetRipper.AssemblyDumper.Documentation;
|
|
|
|
internal static class IdEnumDocumenter
|
|
{
|
|
public static void AddIdEnumDocumentation()
|
|
{
|
|
foreach ((FieldDefinition field, ClassGroup group) in Passes.Pass556_CreateClassIDTypeEnum.FieldGroupDictionary)
|
|
{
|
|
DocumentationHandler.AddFieldDefinitionLine(field, SeeXmlTagGenerator.MakeCRef(group.Interface));
|
|
DocumentationHandler.AddFieldDefinitionLine(field, SeeXmlTagGenerator.MakeCRef(group.GetOrCreateMainClass()));
|
|
DocumentationHandler.AddFieldDefinitionLine(field, InterfaceDocumenter.GetUnityVersionString(group));
|
|
}
|
|
}
|
|
}
|