ButtonPanel.cs 311 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using SC;
  6. public class ButtonPanel : MonoBehaviour {
  7. public UIButton CurButton;
  8. public PannelType PannelType;
  9. void Awake () {
  10. CurButton = GetComponent<UIButton>();
  11. }
  12. }