ShopBtn.cs 136 B

123456789101112
  1. using UnityEngine;
  2. using System.Collections;
  3. public class ShopBtn : MonoBehaviour
  4. {
  5. public void Click()
  6. {
  7. ShopPanel.Show();
  8. }
  9. }