15 lines
335 B
C#
Raw Permalink Normal View History

using BepInEx;
namespace TraderScrolling
{
[BepInPlugin("com.kaeno.TraderScrolling", "Kaeno-TraderScrolling", "1.0.0")]
public class TraderScrolling : BaseUnityPlugin
{
2023-10-08 16:48:28 +01:00
private void Awake()
{
new TraderScrollingPatch().Enable();
2023-10-08 16:48:28 +01:00
new PlayerCardPatch().Enable();
}
}
}