-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMod.cs
More file actions
20 lines (19 loc) · 691 Bytes
/
Mod.cs
File metadata and controls
20 lines (19 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using CodeStage.AntiCheat.ObscuredTypes;
using PulsarModLoader;
using PulsarModLoader.MPModChecks;
namespace TranslationCharacterFix
{
public class Mod : PulsarMod
{
public override string Version => "0.0.1";
public override string Author => "OnHyex";
public override string ShortDescription => "Fix the number of displayed characters when using a translation to a specified amount";
public override string Name => "Translation Character Fix";
public override string HarmonyIdentifier()
{
return $"{Author}.{Name}";
}
public override int MPRequirements => (int)MPRequirement.None;
}
}