[+] AquaMai: Init project

This commit is contained in:
Azalea
2024-02-07 00:45:47 -05:00
parent 363c9ff028
commit 8aab359b0b
9 changed files with 543 additions and 0 deletions

24
AquaMai/Main.cs Normal file
View File

@@ -0,0 +1,24 @@
using MelonLoader;
using HarmonyLib;
namespace AquaMai
{
public static class BuildInfo
{
public const string Name = "AquaMai";
public const string Description = "Mod for Sinmai";
public const string Author = "Aza";
public const string Company = null;
public const string Version = "1.0.0";
public const string DownloadLink = null;
}
public class AquaMai : MelonMod
{
public override void OnInitializeMelon()
{
MelonLogger.Msg("OnApplicationStart");
HarmonyLib.Harmony.CreateAndPatchAll(typeof(CutsceneSkipping));
}
}
}