Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class MyMod : BasePlugin
{
// The Resonite engine is now fully initialized
// Safe to access FrooxEngine classes and functionality
Log.LogInfo("Engine is ready!");
Log.LogInfo("Engine is ready with version: " + Engine.Current.VersionString);
}
}
```
Expand All @@ -66,4 +66,4 @@ To add new hooks to this library:
- Use `[HarmonyPatchCategory]` attribute for organization
- Use `[HarmonyPatch]` to target the method to hook
- Implement Prefix/Postfix methods as needed
- Call the appropriate event from `ResoniteHooks`
- Call the appropriate event from `ResoniteHooks`
Loading