Brak opisu
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.

ShowOptions.cs 411B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.Advertisements
  3. {
  4. /// <summary>
  5. /// A collection of options that you can pass to <c>Advertisement.Show</c>, to modify ad behaviour.
  6. /// </summary>
  7. public class ShowOptions
  8. {
  9. /// <summary>
  10. /// Add a string to specify an identifier for a specific user in the game.
  11. /// </summary>
  12. public string gamerSid { get; set; }
  13. }
  14. }