20 lines
529 B
C#
20 lines
529 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.1.0";
|
|
|
|
public void Awake()
|
|
{
|
|
Console.WriteLine("Loading Updater");
|
|
UpdateHandler.Create();
|
|
}
|
|
}
|
|
}
|