using UnityEngine; using System.Collections; namespace Gaia.GXC.GameTexturesCom { /// /// Description for village exteriors kit /// public class GameTexturesCom : MonoBehaviour { /// /// Publisher name /// /// Publisher name public static string GetPublisherName() { return "GameTextures.com"; } /// /// Package name /// /// Package name public static string GetPackageName() { return "Game Textures"; } /// /// Package image /// /// Package image public static string GetPackageImage() { return "GameTexturesCom"; } /// /// Package description /// /// Package description public static string GetPackageDescription() { return @"GameTextures.com is the most beautiful library of game-ready PBR Materials on the Internet."; } /// /// Package URL /// /// Package URL public static string GetPackageURL() { return "http://www.gametextures.com/"; } } }