Foerming/Assets/Scripts/Shop.cs
dhain ee6704abc1 added ItemStorage.cs, ItemStorageSlot.cs, ItemStorageUI.cs
* Inventory, InventorySlot, InventoryUI, Shop, ShopSlot, ShopUI are extending them
2022-06-02 15:08:21 +02:00

18 lines
No EOL
332 B
C#

using System.Collections.Generic;
using UnityEngine;
public class Shop : ItemStorage {
#region Singleton
public static Shop instance;
private void Awake() {
if(instance != null) {
Debug.LogWarning("More than one instance of Shop found");
}
instance = this;
}
#endregion
}