CountSelectWindowUI.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(CountSelectWindowUI target, Inventory other) { target.SetArgs(other.themeUI, new object[] { other, 1, false}); }
}