muffin v7.4.10
This commit is contained in:
parent
2df81c5d15
commit
b8dd142c23
47 changed files with 3604 additions and 1058 deletions
16
LLib/LLib.Shop/PurchaseCompletedEventArgs.cs
Normal file
16
LLib/LLib.Shop/PurchaseCompletedEventArgs.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace LLib.Shop;
|
||||
|
||||
public sealed class PurchaseCompletedEventArgs : EventArgs
|
||||
{
|
||||
public uint ItemId { get; }
|
||||
|
||||
public bool Success { get; }
|
||||
|
||||
public PurchaseCompletedEventArgs(uint itemId, bool success)
|
||||
{
|
||||
ItemId = itemId;
|
||||
Success = success;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue