Skip to main content

CountSelectWindowUI.SetArgs

Declaration#

public virtual void SetArgs(InventoryThemeUI themeUI, Object[] args)

Parameters#

NameDescription
themeUIAssociated Inventory Theme UI
argsParameters 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});    }

}