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