BepInEx Library IconEven

|

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.

EvenPlugin.cs
using BepInEx;
using Even.Commands.Runtime;

[BepInPlugin("author.even.plugin", "Even Plugin", "1.0.0")]
public sealed class Plugin : BaseUnityPlugin
{
  private void Awake()
  {
    // Register your custom command into Even
    CommandAPI.Register(new MyCustomCommand());
  }
}