16 lines
489 B
C#
16 lines
489 B
C#
using System;
|
|
using Mono.Cecil;
|
|
|
|
class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
var asm = AssemblyDefinition.ReadAssembly("/Users/luca.genovese/Library/Application Support/XIV on Mac/dalamud/Hooks/dev/FFXIVClientStructs.dll");
|
|
var type = asm.MainModule.GetType("FFXIVClientStructs.FFXIV.Client.UI.AddonNamePlate/NamePlateObject");
|
|
foreach (var field in type.Fields)
|
|
{
|
|
Console.WriteLine($"FIELD {field.Name}: {field.FieldType}");
|
|
}
|
|
}
|
|
}
|