Skip to main content

GDTKItem.GetInheritsFrom

Declaration#

public GDTKItem GetInheritsFrom()

Description#

Gets the item this object inherits from

Usage#

Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void Example(GDTKItem target)    {        GDTKItem result = target.GetInheritsFrom();    }
}