16 lines
375 B
C#
16 lines
375 B
C#
using BepInEx;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Terkoiz.FlareEventNotifier
|
|
{
|
|
[BepInPlugin("com.terkoiz.flareeventnotifier", "Terkoiz.FlareEventNotifier", "1.0.1")]
|
|
public class FlareEventNotifierPlugin : BaseUnityPlugin
|
|
{
|
|
[UsedImplicitly]
|
|
internal void Start()
|
|
{
|
|
new FlareEventHookPatch().Enable();
|
|
}
|
|
}
|
|
}
|