forked from CWX/CWX-mods
15 lines
335 B
C#
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();
|
|
}
|
|
}
|
|
}
|