13 lines
379 B
C#
13 lines
379 B
C#
using UnityEngine;
|
|
|
|
public class ShopSwitcher : MonoBehaviour {
|
|
public Sprite animalShopSprite;
|
|
public Sprite itemShopSprite;
|
|
|
|
public void SwitchShops() {
|
|
// switch text in Shop Title
|
|
// switch image on switch Button
|
|
// turn off one content and turn on the other
|
|
// remove undo purchase button when switching to an animal shop
|
|
}
|
|
}
|