25 lines
593 B
C#
25 lines
593 B
C#
using System.Collections.Generic;
|
|
using GameCore;
|
|
|
|
public class EventPartnerStatueMainPanelData
|
|
{
|
|
public int TicketCount;
|
|
public EventPartnerStatueSlotViewData[] SlotViewDataList;
|
|
public ITimerContext TimerContext;
|
|
public List<ItemData> GrandRewardList;
|
|
public List<bool> BuildStatus;
|
|
}
|
|
|
|
public class EventPartnerStatueSlotViewData
|
|
{
|
|
public int Index;
|
|
public bool IsEmpty;
|
|
public PlayerInfo Info;
|
|
public int Stage;
|
|
public float Progress;
|
|
public ItemData Reward;
|
|
public int ScoreToAdd;
|
|
public bool HasInvitation;
|
|
public bool IsClaimed;
|
|
}
|