CWX-mods/Live/Kaeno-TraderScrolling/TraderScrolling.cs
2024-02-06 00:14:43 +00:00

15 lines
329 B
C#

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