mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-09 04:29:03 -05:00
22 lines
524 B
C#
22 lines
524 B
C#
using MelonLoader;
|
|
|
|
namespace AquaMai.Core;
|
|
|
|
public static class BuildInfo
|
|
{
|
|
// The fields are set in `AquaMai/Main.cs` with reflection.
|
|
// The values are from `AquaMai/BuildInfo.cs`.
|
|
|
|
public static string Name;
|
|
public static string Description;
|
|
public static string Author;
|
|
public static string Company;
|
|
public static string Version;
|
|
public static string GitVersion;
|
|
public static string BuildDate;
|
|
public static string DownloadLink;
|
|
|
|
public static MelonAssembly ModAssembly;
|
|
}
|
|
|