EquipSlotClient.previousItem
public GDTKItem previousItem { get; }Description#
Gets the previously equipped item
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(EquipSlotClient target) { GDTKItem result = target.previousItem; } }