Files
SVSimServer/SVSim.BattleEngine/Engine/Wizard/PackChildGachaInfo.cs

18 lines
365 B
C#

namespace Wizard;
public class PackChildGachaInfo
{
public GachaUI.CardPackType PackType { get; set; }
public int Cost { get; set; }
public long UserGoodsId { get; set; }
public int CostGoodsCount => PlayerStaticData.GetItemNum((int)UserGoodsId);
public int AvailableCount { get; set; }
public int? FreeGachaCampaignId { get; set; }
}