//
// 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
{
///
/// Provides global access to standard information about AssetIcons.
///
public static class ProductInformation
{
///
/// The current version of this asset.
///
///
///
public const string Name = "AssetIcons";
///
/// The current version of this asset.
///
public const string Version = "2.1.0";
///
/// A brief description of this asset.
///
///
public const string Description = "Extension for Unity that draws custom icons inside Unity.";
///
/// The author of this asset.
///
public const string Author = "Anthony Marmont";
///
/// Copyright notice for this asset.
///
public const string Copyright = "AssetIcons © 2019 Anthony Marmont";
///
/// A link to the store for this product.
///
public const string StorePageUrl = "https://assetstore.unity.com/packages/slug/100547";
///
/// A link to the repository for this product.
///
public const string GitHubUrl = "https://github.com/Fydar/AssetIcons";
///
/// A link to the issue tracker for this product.
///
public const string IssueTracker = "https://github.com/Fydar/AssetIcons/issues";
}
}
#pragma warning restore