CWX-mods/Live/Kaeno-TraderScrolling/TraderScrolling.cs
2024-07-06 22:05:04 +01:00

15 lines
329 B
C#

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