暫無描述
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.

StartEventArgs.cs 270B

1234567891011121314
  1. using System;
  2. namespace UnityEngine.Advertisements.Events
  3. {
  4. class StartEventArgs : EventArgs
  5. {
  6. public string placementId { get; }
  7. public StartEventArgs(string placementId)
  8. {
  9. this.placementId = placementId;
  10. }
  11. }
  12. }