Foerming/Assets/Scripts/Shop/AnimalShop.cs
d-hain 441ffb900a Animals can now be bought in AnimalShop
if bought they will be placed somewhere random on the map
2022-06-23 22:18:32 +02:00

21 lines
No EOL
392 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
}
}