Decompiled source of RecentlyPlayed v1.0.0

BepInEx/plugins/RecentlyPlayed/RecentlyPlayed.dll

Decompiled 5 days ago
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 ComputerysModdingUtilities;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using Steamworks;
using UnityEngine;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: StraftatMod(true)]
[assembly: IgnoresAccessChecksTo("Assembly-CSharp")]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("RecentlyPlayed")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyDescription("Adds recently played with players to steam's recently played with list")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("kestrel.straftat.recentlyplayed")]
[assembly: AssemblyTitle("RecentlyPlayed")]
[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 RecentlyPlayed
{
	[BepInPlugin("kestrel.straftat.recentlyplayed", "RecentlyPlayed", "1.0.0")]
	[Harmony]
	public class Plugin : BaseUnityPlugin
	{
		public static readonly string loadBearingColonThree = ":3";

		private void Awake()
		{
			//IL_001b: Unknown result type (might be due to invalid IL or missing references)
			if (loadBearingColonThree != ":3")
			{
				Application.Quit();
			}
			new Harmony("kestrel.straftat.recentlyplayed").PatchAll();
			((BaseUnityPlugin)this).Logger.LogInfo((object)"Hiiiiiiiiiiii :3");
		}

		[HarmonyPatch(typeof(Settings), "AddPlayerToHistory")]
		[HarmonyPrefix]
		public static void AddPlayerToRecentlyPlayedWith(ClientInstance player)
		{
			//IL_0006: Unknown result type (might be due to invalid IL or missing references)
			SteamFriends.SetPlayedWith((CSteamID)player.PlayerSteamID);
		}
	}
	public static class PluginInfo
	{
		public const string PLUGIN_GUID = "kestrel.straftat.recentlyplayed";

		public const string PLUGIN_NAME = "RecentlyPlayed";

		public const string PLUGIN_VERSION = "1.0.0";
	}
}
namespace System.Runtime.CompilerServices
{
	[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
	internal sealed class IgnoresAccessChecksToAttribute : Attribute
	{
		public IgnoresAccessChecksToAttribute(string assemblyName)
		{
		}
	}
}