AkWwiseSDKVersion.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*******************************************************************************
  2. The content of this file includes portions of the AUDIOKINETIC Wwise Technology
  3. released in source code form as part of the SDK installer package.
  4. Commercial License Usage
  5. Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
  6. may use this file in accordance with the end user license agreement provided
  7. with the software or, alternatively, in accordance with the terms contained in a
  8. written agreement between you and Audiokinetic Inc.
  9. Apache License Usage
  10. Alternatively, this file may be used under the Apache License, Version 2.0 (the
  11. "Apache License"); you may not use this file except in compliance with the
  12. Apache License. You may obtain a copy of the Apache License at
  13. http://www.apache.org/licenses/LICENSE-2.0.
  14. Unless required by applicable law or agreed to in writing, software distributed
  15. under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
  16. OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
  17. the specific language governing permissions and limitations under the License.
  18. Copyright (c) 2023 Audiokinetic Inc.
  19. *******************************************************************************/
  20. using System;
  21. using System.Text;
  22. namespace AK
  23. {
  24. namespace Wwise
  25. {
  26. public static class Version
  27. {
  28. #region Wwise SDK Version - Numeric values
  29. /// <summary>
  30. /// Wwise SDK major version
  31. /// </summary>
  32. public const int Major = 2023;
  33. /// <summary>
  34. /// Wwise SDK minor version
  35. /// </summary>
  36. public const int Minor = 1;
  37. /// <summary>
  38. /// Wwise SDK sub-minor version
  39. /// </summary>
  40. public const int SubMinor = 0;
  41. /// <summary>
  42. /// Wwise SDK build number
  43. /// </summary>
  44. public const int Build = 8367;
  45. /// <summary>
  46. /// Wwise SDK build nickname
  47. /// </summary>
  48. public const string Nickname = "";
  49. #endregion Wwise SDK Version - Numeric values
  50. #region Wwise SDK Version - String values
  51. /// <summary>
  52. /// String representing the Wwise SDK version
  53. /// </summary>
  54. public static string VersionName
  55. {
  56. get
  57. {
  58. return "v" + Major + "." + Minor + "." + SubMinor + (Nickname.Length == 0 ? "" : "_" + Nickname);
  59. }
  60. }
  61. /// <summary>
  62. /// String representing the Wwise SDK version
  63. /// </summary>
  64. public const string AssemblyVersion = "2023.1.0.8367";
  65. /// <summary>
  66. /// String representing the Wwise SDK copyright notice
  67. /// </summary>
  68. public const string CopyrightNotice = "\xA9 2006-2020. Audiokinetic Inc. All rights reserved.";
  69. #endregion Wwise SDK Version - String values
  70. }
  71. }
  72. }