1.8.0 cleanup

This commit is contained in:
sinaioutlander
2020-09-27 22:52:08 +10:00
parent 873d0f277d
commit 629403a74d
3 changed files with 30 additions and 23 deletions

View File

@ -4,24 +4,24 @@ namespace Explorer
{
public class ExplorerCore
{
public const string NAME =
#if ML
#if CPP
"Explorer (Il2Cpp, MelonLoader)";
#else
"Explorer (Mono, MelonLoader)";
#endif
#else
#if CPP
"Explorer (Il2Cpp, BepInEx)";
#else
"Explorer (Mono, BepInEx)";
#endif
#endif
public const string NAME = "Explorer (" + PLATFORM + ", " + MODLOADER + ")";
public const string VERSION = "1.8.0";
public const string AUTHOR = "Sinai";
public const string GUID = "com.sinai.explorer";
public const string MODLOADER =
#if ML
"MelonLoader";
#else
"BepInEx";
#endif
public const string PLATFORM =
#if CPP
"Il2Cpp";
#else
"Mono";
#endif
public static ExplorerCore Instance { get; private set; }
public ExplorerCore()