using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using BepInEx;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(/*Could not decode attribute arguments.*/)]
[assembly: TargetFramework(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
[assembly: AssemblyCompany("ULTRAHOP")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("ULTRAHOP")]
[assembly: AssemblyTitle("ULTRAHOP")]
[assembly: AssemblyVersion("1.0.0.0")]
[module: RefSafetyRules(11)]
namespace ULTRAHOP;
[BepInPlugin("ULTRAHOP.FishSnacks.ultrakill", "ultrahop", "1.0.0")]
public class Class1 : BaseUnityPlugin
{
private NewMovement player;
private void Update()
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_002d: Unknown result type (might be due to invalid IL or missing references)
player = MonoSingleton<NewMovement>.Instance;
if (Input.GetKeyDown((KeyCode)116))
{
player.rb.AddForce(Vector3.up * 600000f);
}
}
}