Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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