Version
menu_open
link

include/AK/AkWwiseSDKVersion.cs

Go to the documentation of this file.
00001 
00002 //
00003 // Copyright (c) Audiokinetic Inc. 2006-2016. All rights reserved.
00004 //
00005 // Audiokinetic Wwise SDK version, build number and copyright constants.
00006 // These are used by sample projects to display the version and to
00007 // include it in their assembly info. They can also be used by games
00008 // or tools to display the current version and build number of the
00009 // Wwise Sound Engine.
00010 //
00012 
00013 using System;
00014 using System.Text;
00015 
00016 namespace AK
00017 {
00018     namespace Wwise
00019     {
00020         public static class Version
00021         {
00022             #region Wwise SDK Version - Numeric values
00023 
00027             public const int Major = 2015;
00028 
00032             public const int Minor = 1;
00033 
00037             public const int SubMinor = 9;
00038 
00042             public const int Build = 5624;
00043             
00047             public const string Nickname = "";
00048 
00049             #endregion Wwise SDK Version - Numeric values
00050 
00051             #region Wwise SDK Version - String values
00052 
00056             public static string VersionName
00057             {
00058                 get
00059                 {
00060                     if (Nickname.Length == 0)
00061                         return "v2015.1.9";
00062                     else
00063                         return "v2015.1.9_" + Nickname;
00064                 }
00065             }
00066 
00070             public const string AssemblyVersion = "2015.1.9.5624";
00071 
00075             public const string CopyrightNotice = "\xA9 2006-2016. Audiokinetic Inc. All rights reserved.";
00076 
00077             #endregion Wwise SDK Version - String values
00078         }
00079     }
00080 }

Was this page helpful?

Need Support?

Questions? Problems? Need more info? Contact us, and we can help!

Visit our Support page

Tell us about your project. We're here to help.

Register your project and we'll help you get started with no strings attached!

Get started with Wwise