ONI Agent Bridge - initial mod implementation

This commit is contained in:
JianFeeeee
2026-05-30 11:00:36 +08:00
commit 1f25d3d879
95 changed files with 50686 additions and 0 deletions

19
mod/ONIAgentBridge.csproj Normal file
View File

@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<AssemblyName>ONIAgentBridge</AssemblyName>
<RootNamespace>ONIAgentBridge</RootNamespace>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony" HintPath="$(ONI_Path)\0Harmony.dll" Private="False" />
<Reference Include="Assembly-CSharp" HintPath="$(ONI_Path)\Assembly-CSharp.dll" Private="False" />
<Reference Include="Assembly-CSharp-firstpass" HintPath="$(ONI_Path)\Assembly-CSharp-firstpass.dll" Private="False" />
<Reference Include="Newtonsoft.Json" HintPath="$(ONI_Path)\Newtonsoft.Json.dll" Private="False" />
<Reference Include="UnityEngine" HintPath="$(ONI_Path)\UnityEngine.dll" Private="False" />
<Reference Include="UnityEngine.CoreModule" HintPath="$(ONI_Path)\UnityEngine.CoreModule.dll" Private="False" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="UnityEngine.ScreenCaptureModule" HintPath="$(ONI_Path)\UnityEngine.ScreenCaptureModule.dll" Private="False" />
</ItemGroup>
</Project>