Download GnomiumAPI

Get the latest version of GnomiumAPI and start building mods for Burglin' Gnomes.

GnomiumAPI

GnomiumAPI v1.3.0

Complete zero-reflection modding API for Burglin' Gnomes — 80 static classes and 844 members with named constants

80
Classes
netstandard2.1
Framework
Demo
Game Ver
Mod Launcher
Gnomium Mod Launcher
One-click installer • Auto-updates • Mod profiles • Built-in mod browser
  1. 1

    Run the Installer

    Download and run the installer. It sets up everything automatically — Python, BepInEx, the Mod Loader, and the launcher itself.

  2. 2

    Sign In

    Log in with your GnomiumAPI account to access the built-in mod browser, download mods, and sync mod profiles.

  3. 3

    Browse & Install Mods

    Browse available mods directly in the launcher, install with one click, and enable auto-updates to stay current.

  4. 4

    Launch

    Hit the launch button. The launcher handles BepInEx setup, mod compilation, and game launch automatically.

Available Packages

Package Type Version Description Depends On
GnomiumAPIModLoader Framework 1.0.0 Core mod loader — discovery, dependency resolution, lifecycle management BepInEx
GnomiumAPI Core API 1.2.0 80 static classes and 844 members with named enum constants covering every game system ModLoader

Directory Structure

The mod loader scans both directories. The Mod Launcher installer configures everything automatically.

Burglin Gnomes/
  ├── BepInEx/
  │   └── plugins/
  │       ├── GnomiumAPIModLoader.dll
  │       ├── GnomiumAPI/              ← R2ModMan installs here
  │       │   ├── GnomiumAPIMod.dll
  │       │   └── mod.json
  │       └── YourMod/
  │           ├── YourMod.dll
  │           └── mod.json
  ├── ModLauncher/
  │   ├── Mods/                    ← Custom launcher installs here
  │   │   ├── GnomiumAPI/
  │   │   │   ├── GnomiumAPIMod.dll
  │   │   │   └── mod.json
  │   │   └── YourMod/
  │   │       ├── YourMod.dll
  │   │       └── mod.json
  │   └── launcher.py              ← Optional GUI launcher
  ├── winhttp.dll
  ├── doorstop_config.ini
  └── Burglin Gnomes.exe

Requirements

Burglin' GnomesSteam — Demo or Full Release
BepInEx 5.4.23.5Included automatically via R2ModMan or the Mod Launcher
.NET Standard 2.1Target framework for mod compilation (netstandard2.1)
Windows 10/11 (64-bit)Required for BepInEx injection
Python 3.6+Bundled automatically with the Mod Launcher installer
R2ModManOptional — recommended mod manager

Mod Manifest Format

Every mod needs a mod.json file in its folder — this tells the mod loader how to discover and load it:

{
  "Id": "com.yourname.yourmod",
  "Name": "Your Mod Name",
  "Author": "Your Name",
  "Version": "1.0.0",
  "Description": "What your mod does",
  "EntryDll": "YourMod.dll",
  "EntryClass": "YourNamespace.YourModClass",
  "GameVersion": "Demo",
  "Dependencies": ["com.gnomiumapi.api"]
}