Skip to main content

GDTKItem.Clone

Declaration#

public GDTKItem Clone()

Description#

Create a clone of this object

Usage#

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