using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using BepInEx;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using MonoMod.RuntimeDetour;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("ExitConfirmation")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("ExitConfirmation")]
[assembly: AssemblyTitle("ExitConfirmation")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
internal sealed class NullableAttribute : Attribute
{
public readonly byte[] NullableFlags;
public NullableAttribute(byte P_0)
{
NullableFlags = new byte[1] { P_0 };
}
public NullableAttribute(byte[] P_0)
{
NullableFlags = P_0;
}
}
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
internal sealed class NullableContextAttribute : Attribute
{
public readonly byte Flag;
public NullableContextAttribute(byte P_0)
{
Flag = P_0;
}
}
}
namespace ExitConfirmation
{
[BepInPlugin("ExitConfirmation.nickklmao", "Exit Confirmation", "1.0.0")]
[ContentWarningPlugin("ExitConfirmation.nickklmao", "1.0.0", true)]
internal class Loader : BaseUnityPlugin
{
private static void OnExitButtonClickedHook(Action<EscapeMenuMainPage> orig, EscapeMenuMainPage self)
{
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003e: Expected O, but got Unknown
//IL_0046: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Expected O, but got Unknown
Action<EscapeMenuMainPage> orig2 = orig;
EscapeMenuMainPage self2 = self;
Modal.Show("QUIT", "Are you sure you want to quit?", (ModalOption[])(object)new ModalOption[2]
{
new ModalOption("YES", (Action)delegate
{
orig2(self2);
}),
new ModalOption("NO", (Action)null)
}, (Action)null);
}
private void Awake()
{
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
new Hook((MethodBase)AccessTools.Method(typeof(EscapeMenuMainPage), "OnExitButtonClicked", (Type[])null, (Type[])null), AccessTools.Method(((object)this).GetType(), "OnExitButtonClickedHook", (Type[])null, (Type[])null));
}
}
}