using System;
namespace Unity.Services.Mediation
{
///
/// An interface that can pass on events when impression events are fired from ad objects.
///
public interface IImpressionEventPublisher
{
///
/// Event to subscribe to when listening for impression events.
///
event EventHandler OnImpression;
}
}