23 lines
No EOL
610 B
C#
23 lines
No EOL
610 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using ShiroginSDK.Runtime.Modules.IAP.Scripts.Definitions;
|
|
|
|
namespace ShiroginSDK.Runtime.Modules.Events
|
|
{
|
|
public static partial class ShiroginEvents
|
|
{
|
|
public static class Shop
|
|
{
|
|
[Serializable]
|
|
public class Shop_UIStoreItem_Rewarded
|
|
{
|
|
public List<RewardDefinition> EarnedRewards;
|
|
|
|
public Shop_UIStoreItem_Rewarded(List<RewardDefinition> earnedRewards)
|
|
{
|
|
EarnedRewards = earnedRewards;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |