You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
one-nora edited this page May 10, 2026
·
2 revisions
Add references to WKLib.dll (found here) and ImuiBepInEx.dll (found here).
Make sure your plugin imports the WKLib namespace (using WKLib.API;)
Add WKLib as a hard dependency, like so
usingBepInEx;usingWKLib.API;[BepInDependency(WKLibPlugin.GUID,BepInDependency.DependencyFlags.HardDependency)]publicsealedclassPlugin:BaseUnityPlugin{// your plugin}
DLL reference guide
For Visual Studio: use Add Reference in the Reference Manager, then Browse if the DLL is on disk. Reference Link
For Rider: right-click the project, choose Add Reference, then use Add From... to select the assembly file. Reference Link