Skip to main content

ClassUIDBListDisplay.DrawItems

Declaration#

public virtual void DrawItems(List<T> items, Object[] args)

Parameters#

NameDescription
itemsItems to display
argsArray of parameters

Description#

Draw all items to display

Usage#

using NullSave.GDTK.Stats;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ClassUIDBListDisplay target, List<ClassUI> other)    {        target.DrawItems(other, new object[] { false });    }
}