2023-10-11 08:33:27 +08:00
|
|
|
|
using BepInEx;
|
2023-10-13 21:14:59 +08:00
|
|
|
|
using System;
|
2023-10-11 08:33:27 +08:00
|
|
|
|
|
|
|
|
|
namespace TranslationUpdater
|
|
|
|
|
{
|
|
|
|
|
[BepInPlugin(pluginGuid, pluginName, pluginVersion)]
|
|
|
|
|
class TranslationUpdater : BaseUnityPlugin
|
|
|
|
|
{
|
|
|
|
|
public const string pluginGuid = "katboi01.TranslationUpdater";
|
|
|
|
|
public const string pluginName = "KF3 Translation Updater";
|
2025-02-03 02:44:00 +08:00
|
|
|
|
public const string pluginVersion = "1.2.0";
|
2023-10-11 08:33:27 +08:00
|
|
|
|
|
|
|
|
|
public void Awake()
|
|
|
|
|
{
|
2025-02-03 02:44:00 +08:00
|
|
|
|
UpdateHandler.PluginVersion = pluginVersion;
|
2023-10-13 21:14:59 +08:00
|
|
|
|
UpdateHandler.Create();
|
2023-10-11 08:33:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|