-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.cs
More file actions
29 lines (24 loc) · 985 Bytes
/
Core.cs
File metadata and controls
29 lines (24 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace WeatherElectric;
/// <inheritdoc />
public class Core : MelonMod
{
internal const string Name = "One Last Lib Pt.2";
internal const string Description = "But in our lies, there's a truth to find. | Core mod for my mods.";
internal const string Author = "Mabel Amber";
internal const string Company = "Weather Electric";
internal const string Version = "1.0.0";
internal const string DownloadLink = "https://thunderstore.io/c/bonelab/p/WeatherElectric/OneLastLibPt2/";
internal static LoggerInstance Logger;
/// <inheritdoc />
public override void OnInitializeMelon()
{
Logger = new LoggerInstance(LoggerInstance);
Preferences.Init();
UserDataCore.Init();
if (Helpers.CheckGame("BONELAB", "Stress Level Zero") && Helpers.IsAssemblyLoaded("BoneLib"))
{
Menu.Init();
}
Logger.Log("Finished initialization for One Last Lib Pt. 2", LogLevel.Debug);
}
}