Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }