Firstborn/Library/PackageCache/com.unity.ads@3.7.5/Runtime/Monetization/PlacementContentStateChange...

21 lines
669 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
using System;
namespace UnityEngine.Monetization
{
public class PlacementContentStateChangeEventArgs : EventArgs
{
public string placementId;
public PlacementContent placementContent;
public PlacementContentState previousState;
public PlacementContentState newState;
public PlacementContentStateChangeEventArgs(string id, PlacementContent placementContent, PlacementContentState preState, PlacementContentState newState)
{
this.placementId = id;
this.placementContent = placementContent;
this.previousState = preState;
this.newState = newState;
}
}
}