21 lines
632 B
C#
21 lines
632 B
C#
// UNITY 6: All Unity API calls must run on the Main Thread!
|
|
// Use MelonCoroutines for asynchronous operations.
|
|
// Generated by gregExtractor v1.0 — https://dcmods.com
|
|
|
|
using MelonLoader;
|
|
|
|
[assembly: MelonInfo(typeof(SmokeMod.MainPlugin), "SmokeMod", "1.0.0", "YourName")]
|
|
[assembly: MelonGame("Waseku", "Data Center")]
|
|
|
|
namespace SmokeMod;
|
|
|
|
public sealed class MainPlugin : MelonMod
|
|
{
|
|
public override void OnInitializeMelon()
|
|
{
|
|
LoggerInstance.Msg("SmokeMod initialized.");
|
|
|
|
// TODO: Enable gregCore registry calls after NuGet release.
|
|
// gregCore.Registry.Register("SmokeMod", "Economy");
|
|
}
|
|
} |