Update 0.1.9.2 - Fix BubleChat
This commit is contained in:
15
Program.cs
Normal file
15
Program.cs
Normal 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}");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user