14 lines
259 B
C#
Raw Normal View History

2023-08-03 10:01:46 +01:00
using BepInEx;
2023-10-06 18:46:03 +01:00
namespace Test_layout
2023-08-03 10:01:46 +01:00
{
[BepInPlugin("com.test_layout", "test_layout", "1.0.0")]
2023-10-06 18:46:03 +01:00
public class Test_layout : BaseUnityPlugin
2023-08-03 10:01:46 +01:00
{
private void Awake()
{
2023-10-06 18:46:03 +01:00
new Test_layoutPatch().Enable();
2023-08-03 10:01:46 +01:00
}
}
}