mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 18:32:45 +00:00
10 lines
180 B
C#
10 lines
180 B
C#
using OWML.Common;
|
|
|
|
namespace QSB;
|
|
|
|
public class QSBApi
|
|
{
|
|
public void RegisterAddon(IModBehaviour addon) =>
|
|
QSBCore.Addons.Add(addon.ModHelper.Manifest.UniqueName, addon);
|
|
}
|