CWX-mods/Live/Kaeno-TraderScrolling/TraderScrolling.cs
2023-10-08 22:19:26 +01:00

15 lines
335 B
C#

using BepInEx;
namespace TraderScrolling
{
[BepInPlugin("com.kaeno.TraderScrolling", "Kaeno-TraderScrolling", "1.0.0")]
public class TraderScrolling : BaseUnityPlugin
{
private void Awake()
{
new TraderScrollingPatch().Enable();
new PlayerCardPatch().Enable();
}
}
}