14 lines
273 B
C#
14 lines
273 B
C#
using BepInEx;
|
|
|
|
namespace SamSWAT.KoreanFontFix
|
|
{
|
|
[BepInPlugin("com.samswat.koreanfontfix", "SamSWAT.KoreanFontFix", "1.0.0")]
|
|
public class Plugin : BaseUnityPlugin
|
|
{
|
|
private void Awake()
|
|
{
|
|
new Patch().Enable();
|
|
}
|
|
}
|
|
}
|