Files
ft/Client/Assets/Scripts/UI/OfferStoryChain/OfferStoryChainPurchaseContext.cs
2026-06-29 21:18:33 +08:00

19 lines
509 B
C#

using System.Collections.Generic;
using GameCore;
public class OfferStoryChainPurchaseContext
{
/// <summary>
/// Which slot is this purcase from.
/// </summary>
public int Index { get; set; }
/// <summary>
/// Rewards that has already been given to player. Do not distribute again!
/// </summary>
public List<ItemData> RewardsGiven { get; set; }
/// <summary>
/// Round count when this purchase was made.
/// </summary>
public int RoundCount { get; set; }
}