설명 없음
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.

SamsungAndroidProviderConstants.cs 730B

123456789101112131415161718192021
  1. using System;
  2. namespace UnityEngine.AdaptivePerformance.Samsung.Android
  3. {
  4. /// <summary>
  5. /// Static constants for the Samsung Settings Provider.
  6. /// </summary>
  7. public static class SamsungAndroidProviderConstants
  8. {
  9. /// <summary>
  10. /// Key used to store and retrieve custom configuration settings from EditorBuildSettings.
  11. /// </summary>
  12. public const string k_SettingsKey = "com.unity.adaptiveperformance.samsung.android.provider_settings";
  13. /// <summary>
  14. /// InvalidOperation is the return value of an SDK API call when the feature is not available.
  15. /// </summary>
  16. /// <value>-999</value>
  17. public const int k_InvalidOperation = -999;
  18. }
  19. }