forked from Crockan/MercuryToolbox
19 lines
404 B
C#
19 lines
404 B
C#
using HarmonyLib;
|
|
using MissingOnly;
|
|
using Rocket.Runtime;
|
|
using TestOnlySupport;
|
|
|
|
namespace Rocket.Plugin
|
|
{
|
|
public sealed class PluginEntry
|
|
{
|
|
public string Run(string value)
|
|
{
|
|
CompileOnlyType.Touch();
|
|
MissingMarker.Touch();
|
|
TestMarker.Touch();
|
|
return RuntimeFeature.RequiredMethod(value) + Harmony.VersionInfo();
|
|
}
|
|
}
|
|
}
|