

A developer utility mod for ROUNDS. Provides a simple in-game toast notification system that any mod can use.
Messages appear at the top-center of the screen, slide in smoothly, hold for a configurable duration, and fade out. Multiple messages stack vertically with automatic repositioning.
This is a library mod — it does nothing on its own. Install it if another mod requires it as a dependency.
In your plugin class:
[BepInDependency("com.rounds.gamemessagelib", BepInDependency.DependencyFlags.HardDependency)]
public class MyPlugin : BaseUnityPlugin { ... }
using GameMessageLib;
// Convenience methods
GameMessage.Info("Hello world");
GameMessage.Success("Card data loaded (42 cards)");
GameMessage.Warn("Using cached data");
GameMessage.Error("Connection failed");
// Full control
GameMessage.Show("Custom message", MessageType.Warning, duration: 5f);
| Value | Color |
|---|---|
MessageType.Info |
Blue text, dark blue background |
MessageType.Success |
Green text, dark green background |
MessageType.Warning |
Yellow text, dark amber background |
MessageType.Error |
Red text, dark red background |
5 seconds. Override via the duration parameter.
Reach out on Telegram.