using System.Collections; using System.Collections.Generic; using UnityEngine; public class LotteryPanel : Base { public GameObject AniPanel; public void ShowAni(int id) { GameObject ani= Instantiate(AniPanel, transform); ani.GetComponent().OpenBox(id); } }