Add debug tab for meta changes (pretty useless...) and maybe fix reset problem.

This commit is contained in:
Ottermandias 2022-09-24 15:16:03 +02:00
parent b7b15532f8
commit b359c18360
4 changed files with 37 additions and 7 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Dalamud.Utility.Signatures;
@ -43,6 +44,9 @@ public unsafe partial class CharacterUtility : IDisposable
.Select( idx => new List( new InternalIndex( idx ) ) )
.ToArray();
public IReadOnlyList< List > Lists
=> _lists;
public (IntPtr Address, int Size) DefaultResource( InternalIndex idx )
=> _lists[ idx.Value ].DefaultResource;