i want to make a coins and gems mod for a game and what i found on the dump is a bit different from versions before
i have this inside Wallet class
how do i write the hook?
i have this inside Wallet class
and this is what i think hold the coins and gemsprivate readonly CurrencyMap<int> _currencyAmount; // 0x60
class CurrencyMap<T>
public T Coins; // 0x0
public T Gems; // 0x0
public T Crown; // 0x0
public T Skulls; // 0x0
public T Shades; // 0x0
public T Merchandise; // 0x0
private Dictionary<CurrencyType, T> _map; // 0x0
how do i write the hook?