Skip to main content

GDTKItem.initialized

public bool initialized { get; }

Description#

Get if this object has been initialized

Usage#

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