1
0
mirror of synced 2024-09-24 02:58:23 +02:00
TaikoModStuff/FontChanger.cs
2022-01-27 10:36:07 -07:00

20 lines
434 B
C#

using HarmonyLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaikoModStuff
{
internal class FontChanger
{
[HarmonyPatch(typeof(WordDataManager), "GetFontType")]
[HarmonyPostfix]
static void GetFontType_Patched(ref int __result)
{
__result = 0; // Force the font to the JP one.
}
}
}