Skip to content

Commit

Permalink
Add some script to deal with quick death
Browse files Browse the repository at this point in the history
  • Loading branch information
TRSasasusu committed Jul 17, 2023
1 parent c27bf2a commit 02c2893
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions NHJamTeamErnesto.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using HarmonyLib;
using OWML.Common;
using OWML.ModHelper;
using System.Reflection;

namespace NHJamTeamErnesto {
public class NHJamTeamErnesto : ModBehaviour {
public static NHJamTeamErnesto Instance;

void Awake() {
Instance = this;
Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly());
}

void Start() {
ModHelper.Console.WriteLine($"{nameof(NHJamTeamErnesto)} is loaded!", MessageType.Success);
}
}
}

0 comments on commit 02c2893

Please sign in to comment.