92 lines
2.8 KiB
C#
92 lines
2.8 KiB
C#
/*******************************************************************************
|
|
The content of this file includes portions of the AUDIOKINETIC Wwise Technology
|
|
released in source code form as part of the SDK installer package.
|
|
|
|
Commercial License Usage
|
|
|
|
Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
|
|
may use this file in accordance with the end user license agreement provided
|
|
with the software or, alternatively, in accordance with the terms contained in a
|
|
written agreement between you and Audiokinetic Inc.
|
|
|
|
Apache License Usage
|
|
|
|
Alternatively, this file may be used under the Apache License, Version 2.0 (the
|
|
"Apache License"); you may not use this file except in compliance with the
|
|
Apache License. You may obtain a copy of the Apache License at
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed
|
|
under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
|
|
OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
|
|
the specific language governing permissions and limitations under the License.
|
|
|
|
Copyright (c) 2023 Audiokinetic Inc.
|
|
*******************************************************************************/
|
|
|
|
using System;
|
|
using System.Text;
|
|
|
|
namespace AK
|
|
{
|
|
namespace Wwise
|
|
{
|
|
public static class Version
|
|
{
|
|
#region Wwise SDK Version - Numeric values
|
|
|
|
/// <summary>
|
|
/// Wwise SDK major version
|
|
/// </summary>
|
|
public const int Major = 2022;
|
|
|
|
/// <summary>
|
|
/// Wwise SDK minor version
|
|
/// </summary>
|
|
public const int Minor = 1;
|
|
|
|
/// <summary>
|
|
/// Wwise SDK sub-minor version
|
|
/// </summary>
|
|
public const int SubMinor = 5;
|
|
|
|
/// <summary>
|
|
/// Wwise SDK build number
|
|
/// </summary>
|
|
public const int Build = 8242;
|
|
|
|
/// <summary>
|
|
/// Wwise SDK build nickname
|
|
/// </summary>
|
|
public const string Nickname = "";
|
|
|
|
#endregion Wwise SDK Version - Numeric values
|
|
|
|
#region Wwise SDK Version - String values
|
|
|
|
/// <summary>
|
|
/// String representing the Wwise SDK version
|
|
/// </summary>
|
|
public static string VersionName
|
|
{
|
|
get
|
|
{
|
|
return "v" + Major + "." + Minor + "." + SubMinor + (Nickname.Length == 0 ? "" : "_" + Nickname);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// String representing the Wwise SDK version
|
|
/// </summary>
|
|
public const string AssemblyVersion = "2022.1.5.8242";
|
|
|
|
/// <summary>
|
|
/// String representing the Wwise SDK copyright notice
|
|
/// </summary>
|
|
public const string CopyrightNotice = "\xA9 2006-2020. Audiokinetic Inc. All rights reserved.";
|
|
|
|
#endregion Wwise SDK Version - String values
|
|
}
|
|
}
|
|
}
|