Update to patch 15

This commit is contained in:
Noah Pilarski 2024-06-10 23:02:24 -04:00
parent 169be3bdda
commit 9cf3e4b3e9
3 changed files with 10 additions and 4 deletions

View File

@ -12,8 +12,8 @@
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OWML" Version="2.9.8" />
<PackageReference Include="OuterWildsGameLibs" Version="1.1.14.768" />
<PackageReference Include="OWML" Version="2.13.0" />
<PackageReference Include="OuterWildsGameLibs" Version="1.1.15.1018" />
<PackageReference Include="System.Collections" Version="4.3.0" />
</ItemGroup>
<ItemGroup>

View File

@ -66,6 +66,8 @@ internal class UIInputCommands : IInputCommands
public float PressDuration => throw new NotImplementedException();
public int XInversionFactor { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public event Action OnStarted;
public event Action OnPerformed;
public event Action OnCancelled;
@ -91,5 +93,9 @@ internal class UIInputCommands : IInputCommands
public bool IsPressed(float minPressDuration = 0) => false;
public void Update() { }
public void FixedUpdate() { }
public void ResetState() { }
#endregion
}

View File

@ -4,7 +4,7 @@
"author": "_nebula & xen",
"name": "FreeCam",
"uniqueName": "misternebula.FreeCam",
"version": "2.8.0",
"owmlVersion": "2.9.8",
"version": "2.9.0",
"owmlVersion": "2.13.0",
"dependencies": [ "xen.CommonCameraUtility", "JohnCorby.VanillaFix" ]
}