Skip to main content

InventoryDatabase.isLoaded

public bool isLoaded { get; }

Description#

Gets if the database has loaded

Usage#

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