Nerfed/Nerfed.Runtime/Hook/HookTest.cs

12 lines
182 B
C#
Raw Permalink Normal View History

2024-09-08 20:58:13 +02:00
namespace Nerfed.Runtime.Hook
{
public static class HookTest
{
[Hook]
public static void Test()
{
Log.Info("Hook!");
}
}
}