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
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,20 @@ A [Resonite](https://resonite.com/) BepInEx library (not a standalone mod) that

## Usage

Add a reference to `BepisResoniteHooks` in your mod project, then subscribe to the events you need:
First, add the package reference to your mod's `.csproj` file:

```xml
<PackageReference Include="ResoniteModding.BepisResoniteHooks" Version="1.0.*" />
```

Also add it as a dependency in your `thunderstore.toml`:

```toml
[package.dependencies]
ResoniteModding-BepisResoniteHooks = "1.0.0"
```

Then subscribe to the events you need in your mod:

```csharp
using BepisResoniteHooks;
Expand Down
Loading