2023-08-14 03:07:14 +01:00
|
|
|
|
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()
|
2023-08-14 03:07:14 +01:00
|
|
|
|
{
|
|
|
|
|
new TraderScrollingPatch().Enable();
|
2023-10-08 16:48:28 +01:00
|
|
|
|
new PlayerCardPatch().Enable();
|
2023-08-14 03:07:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|