Files
back_cantanBuilding/Assets/Scripts/EventLuckGame/EventLuckyCards/EventLuckyCardsProgressRewradPopupPanel.cs
2026-05-26 16:15:54 +08:00

13 lines
430 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public partial class EventLuckyCardsProgressRewradPopupPanel : MonoBehaviour
{
public float[] progressBar = new float[] { 0.149f, 0.363f, 0.576f, 0.788f, 1f };
public List<EventLuckyCardsProgressRewardItem> rewardItems = new List<EventLuckyCardsProgressRewardItem>();
public Image bar;
public Button btnClose;
}