20 lines
536 B
C#
20 lines
536 B
C#
using BepInEx;
|
|
using System;
|
|
|
|
namespace TranslationUpdater
|
|
{
|
|
[BepInPlugin(pluginGuid, pluginName, pluginVersion)]
|
|
class TranslationUpdater : BaseUnityPlugin
|
|
{
|
|
public const string pluginGuid = "katboi01.TranslationUpdater";
|
|
public const string pluginName = "KF3 Translation Updater";
|
|
public const string pluginVersion = "1.2.0";
|
|
|
|
public void Awake()
|
|
{
|
|
UpdateHandler.PluginVersion = pluginVersion;
|
|
UpdateHandler.Create();
|
|
}
|
|
}
|
|
}
|