2023-03-28 13:24:16 -04:00
|
|
|
using System.Reflection;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
using UnityEngine.InputSystem;
|
|
|
|
|
|
|
|
[assembly: AssemblyVersion(InputSystem.kAssemblyVersion)]
|
|
|
|
[assembly: InternalsVisibleTo("Unity.InputSystem.TestFramework")]
|
|
|
|
[assembly: InternalsVisibleTo("Unity.InputSystem.Tests.Editor")]
|
|
|
|
[assembly: InternalsVisibleTo("Unity.InputSystem.Tests")]
|
|
|
|
[assembly: InternalsVisibleTo("Unity.InputSystem.IntegrationTests")]
|
|
|
|
|
|
|
|
namespace UnityEngine.InputSystem
|
|
|
|
{
|
|
|
|
public static partial class InputSystem
|
|
|
|
{
|
|
|
|
// Keep this in sync with "Packages/com.unity.inputsystem/package.json".
|
|
|
|
// NOTE: Unfortunately, System.Version doesn't use semantic versioning so we can't include
|
|
|
|
// "-preview" suffixes here.
|
2023-05-07 18:43:11 -04:00
|
|
|
internal const string kAssemblyVersion = "1.5.1";
|
|
|
|
internal const string kDocUrl = "https://docs.unity3d.com/Packages/com.unity.inputsystem@1.5";
|
2023-03-28 13:24:16 -04:00
|
|
|
}
|
|
|
|
}
|