17 lines
366 B
C#
17 lines
366 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class InventoryInitialization : MonoBehaviour
|
|
{
|
|
public bool InitializeAtStart = true;
|
|
|
|
private void Start()
|
|
{
|
|
if (InitializeAtStart)
|
|
{
|
|
RingInventory.GetInstance().InventoryInitialisationForKeysAndItemsAndCollectables();
|
|
}
|
|
}
|
|
}
|