MaxSdk.cs 539 B

1234567891011121314151617181920212223242526
  1. //
  2. // AppLovin MAX Unity Plugin C# Wrapper
  3. //
  4. public class MaxSdk :
  5. #if UNITY_EDITOR
  6. // Check for Unity Editor first since the editor also responds to the currently selected platform.
  7. MaxSdkUnityEditor
  8. #elif UNITY_ANDROID
  9. MaxSdkAndroid
  10. #elif UNITY_IPHONE || UNITY_IOS
  11. MaxSdkiOS
  12. #else
  13. MaxSdkUnityEditor
  14. #endif
  15. {
  16. private const string _version = "8.3.1";
  17. /// <summary>
  18. /// Returns the current plugin version.
  19. /// </summary>
  20. public static string Version
  21. {
  22. get { return _version; }
  23. }
  24. }