19 lines
509 B
C#
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; }
|
|
}
|