61 lines
1.8 KiB
C#
61 lines
1.8 KiB
C#
//
|
|
// Copyright (c) 2017 Anthony Marmont. All rights reserved.
|
|
// Licensed for use under the Unity Asset Store EULA. See https://unity3d.com/legal/as_terms for full license information.
|
|
//
|
|
|
|
#pragma warning disable
|
|
|
|
namespace AssetIcons
|
|
{
|
|
/// <summary>
|
|
/// <para>Provides global access to standard information about AssetIcons.</para>
|
|
/// </summary>
|
|
public static class ProductInformation
|
|
{
|
|
/// <summary>
|
|
/// <para>The current version of this asset.</para>
|
|
/// </summary>
|
|
/// <seealso cref="Version"/>
|
|
/// <seealso cref="Description"/>
|
|
public const string Name = "AssetIcons";
|
|
|
|
/// <summary>
|
|
/// <para>The current version of this asset.</para>
|
|
/// </summary>
|
|
public const string Version = "2.1.0";
|
|
|
|
/// <summary>
|
|
/// <para>A brief description of this asset.</para>
|
|
/// </summary>
|
|
/// <seealso cref="Name"/>
|
|
public const string Description = "Extension for Unity that draws custom icons inside Unity.";
|
|
|
|
/// <summary>
|
|
/// <para>The author of this asset.</para>
|
|
/// </summary>
|
|
public const string Author = "Anthony Marmont";
|
|
|
|
/// <summary>
|
|
/// <para>Copyright notice for this asset.</para>
|
|
/// </summary>
|
|
public const string Copyright = "AssetIcons © 2019 Anthony Marmont";
|
|
|
|
/// <summary>
|
|
/// <para>A link to the store for this product.</para>
|
|
/// </summary>
|
|
public const string StorePageUrl = "https://assetstore.unity.com/packages/slug/100547";
|
|
|
|
/// <summary>
|
|
/// <para>A link to the repository for this product.</para>
|
|
/// </summary>
|
|
public const string GitHubUrl = "https://github.com/Fydar/AssetIcons";
|
|
|
|
/// <summary>
|
|
/// <para>A link to the issue tracker for this product.</para>
|
|
/// </summary>
|
|
public const string IssueTracker = "https://github.com/Fydar/AssetIcons/issues";
|
|
}
|
|
}
|
|
|
|
#pragma warning restore
|