Foerming/Assets/Scripts/Shop/AnimalShop.cs
d-hain c01c592976 Undo last purchase working again
Added Comments to AnimalShop, ItemShop and ShopUI classes
2022-06-23 22:24:22 +02:00

19 lines
No EOL
390 B
C#

using UnityEngine;
namespace Shop {
public class AnimalShop : ElementStorage<Animal> {
#region Singleton
public static AnimalShop instance;
private void Awake() {
if(instance != null) {
Debug.LogWarning("More than one instance of AnimalShop found");
}
instance = this;
}
#endregion
}
}