using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using Microsoft.CodeAnalysis;
using On.RoR2;
using RoR2;
[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.0", FrameworkDisplayName = ".NET Standard 2.0")]
[assembly: AssemblyCompany("VieldsStageIncrement")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("VieldsStageIncrement")]
[assembly: AssemblyTitle("VieldsStageIncrement")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
internal sealed class RefSafetyRulesAttribute : Attribute
{
public readonly int Version;
public RefSafetyRulesAttribute(int P_0)
{
Version = P_0;
}
}
}
namespace VieldsInc
{
[BepInPlugin("MarkTullius.VoidFieldsStageIncrement", "VoidFieldsStageIncrement", "1.0.0")]
public class Main : BaseUnityPlugin
{
[Serializable]
[CompilerGenerated]
private sealed class <>c
{
public static readonly <>c <>9 = new <>c();
public static hook_AdvanceStage <>9__5_0;
internal void <Awake>b__5_0(orig_AdvanceStage orig, Run self, SceneDef nextScene)
{
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
orig.Invoke(self, nextScene);
if (SceneCatalog.GetSceneDefForCurrentScene().sceneType == TimedIntermission)
{
self.NetworkstageClearCount = self.stageClearCount + 1;
}
}
}
public const string PluginGUID = "MarkTullius.VoidFieldsStageIncrement";
public const string PluginAuthor = "MarkTullius";
public const string PluginName = "VoidFieldsStageIncrement";
public const string PluginVersion = "1.0.0";
private static readonly SceneType TimedIntermission = (SceneType)4;
public void Awake()
{
//IL_0015: Unknown result type (might be due to invalid IL or missing references)
//IL_001a: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Expected O, but got Unknown
object obj = <>c.<>9__5_0;
if (obj == null)
{
hook_AdvanceStage val = delegate(orig_AdvanceStage orig, Run self, SceneDef nextScene)
{
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
orig.Invoke(self, nextScene);
if (SceneCatalog.GetSceneDefForCurrentScene().sceneType == TimedIntermission)
{
self.NetworkstageClearCount = self.stageClearCount + 1;
}
};
<>c.<>9__5_0 = val;
obj = (object)val;
}
Run.AdvanceStage += (hook_AdvanceStage)obj;
}
}
}