GDTKDynamicIntValue.initialized
public bool initialized { get; }Description#
Gets if this object has been initialized
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKDynamicIntValue target) { bool result = target.initialized; } }