TransferWindowUI.SetArgs
Declaration#
public virtual void SetArgs(InventoryThemeUI themeUI, Object[] args)Parameters#
| Name | Description |
|---|---|
| themeUI | Associated Inventory Theme UI |
| args | Parameters to pass |
Description#
Set the parameters for the window
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(TransferWindowUI target, InventoryThemeUI other) { target.SetArgs(other, new object[] { true, 3 }); }
}