b486678290
Library -Artifacts
16 lines
412 B
C#
16 lines
412 B
C#
using System;
|
|
|
|
namespace UnityEngine.Monetization
|
|
{
|
|
public class PlacementContentReadyEventArgs : EventArgs
|
|
{
|
|
public string placementId;
|
|
public PlacementContent placementContent;
|
|
public PlacementContentReadyEventArgs(string id, PlacementContent placementContent)
|
|
{
|
|
this.placementId = id;
|
|
this.placementContent = placementContent;
|
|
}
|
|
}
|
|
}
|