using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using BepInEx;
[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("themod")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("themod")]
[assembly: AssemblyTitle("themod")]
[assembly: AssemblyVersion("1.0.0.0")]
[module: RefSafetyRules(11)]
namespace ULTRAKILLonice;
[BepInPlugin("ultrakillOnIce.ethan.ultrakill", "ULTRAKILL on ice", "1.0.0")]
public class Class1 : BaseUnityPlugin
{
private NewMovement player;
private void Update()
{
player = MonoSingleton<NewMovement>.Instance;
player.jumping = true;
}
}