Update 0.1.9.2 - Fix BubleChat

This commit is contained in:
2025-10-04 19:15:27 +02:00
parent 7706ef1fa7
commit b59a579f56
13 changed files with 923 additions and 89 deletions

15
Program.cs Normal file
View File

@@ -0,0 +1,15 @@
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}");
}
}
}