No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FinishEventArgs.cs 383B

12345678910111213141516
  1. using System;
  2. namespace UnityEngine.Advertisements.Events
  3. {
  4. class FinishEventArgs : EventArgs
  5. {
  6. public string placementId { get; }
  7. public ShowResult showResult { get; }
  8. public FinishEventArgs(string placementId, ShowResult showResult)
  9. {
  10. this.placementId = placementId;
  11. this.showResult = showResult;
  12. }
  13. }
  14. }