|
A voice assistant for Gorilla Tag built on BepInEx. Control your game with natural voice commands, extend with custom plugins, and enable dynamic in-game interactions.
ExampleMod.cs
using BepInEx;
using Even.Commands.Runtime;
[BepInPlugin("example.even.myplugin", "My Even Extension", "1.0.0")]
public sealed class MyEvenExtensionPlugin : BaseUnityPlugin
{
private void Awake()
{
// Register your custom command into Even
CommandAPI.Register(new MyCustomCommand());
}
}