GDTKCraftingItemEntry.Clone
Declaration#
public GDTKCraftingItemEntry Clone()Description#
Create a clone of this object
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKCraftingItemEntry target) { GDTKCraftingItemEntry result = target.Clone(); }
}