13 lines
430 B
C#
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;
|
|
}
|