Help! How to use an update from a different class

BrokeBroky

Platinian
public class InventoryPanelGUI
//Methods
private void LateUpdate() { } // 0x6149DC

public class Item
//Fields
public string id; // 0x8

I want hook field string id return "gold" from class item, using Update from a class InventoryPanelGUI.
 
Back
Top Bottom