12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XUnity.AutoTranslator.Plugin.Core.Constants
- {
- /// <summary>
- /// Class providing information about the plugin.
- /// </summary>
- public static class PluginData
- {
- /// <summary>
- /// Gets a globally unique identifier.
- /// </summary>
- public const string Identifier = "gravydevsupreme.xunity.autotranslator";
- /// <summary>
- /// Gets a friendly name for the plugin.
- /// </summary>
- public const string Name = "XUnity Auto Translator";
- /// <summary>
- /// Gets the version of the plugin.
- /// </summary>
- public const string Version = "3.1.0";
- }
- }
|