using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using PersonalBoombox;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("DoomBoombox")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DoomBoombox")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("846d8e15-6b94-4894-88f1-c85d02e7d8e8")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace DoomBoombox;
[BepInPlugin("Lyfalda.DoomBoombox", "DOOM Boombox", "1.0.1")]
[BepInProcess("Lethal Company.exe")]
[BepInDependency("ImoutoSama.PersonalBoombox", "1.1.1")]
public class DoomBoomboxPlugin : BaseUnityPlugin
{
private const string modGUID = "Lyfalda.DoomBoombox";
private const string modName = "DOOM Boombox";
private const string modVersion = "1.0.1";
private readonly Harmony harmony = new Harmony("Lyfalda.DoomBoombox");
internal ManualLogSource mls;
private void Awake()
{
mls = Logger.CreateLogSource("Lyfalda.DoomBoombox");
mls.LogInfo((object)"DOOM Boombox was turned on");
RequestData val = PersonalBoomboxPlugin.AddFromAssemblyDll(Assembly.GetExecutingAssembly().Location);
}
}