flatten folder structure, fix collision boxes and gui/fp/tp transforms

This commit is contained in:
2026-03-19 01:18:24 +01:00
parent c3eedb8bdd
commit 6655e603e3
23 changed files with 85 additions and 36 deletions

View File

@@ -0,0 +1,15 @@
using ButterflyPins.BlockEntities;
using ButterflyPins.Blocks;
using Vintagestory.API.Common;
namespace ButterflyPins.Systems;
public class ButterflyPinsModSystem : ModSystem
{
public override void Start(ICoreAPI api)
{
api.RegisterBlockClass("BlockButterflyPinBoard", typeof(BlockButterflyPinBoard));
api.RegisterBlockEntityClass("ButterflyPinBoard", typeof(BlockEntityButterflyPinBoard));
api.Logger.Notification("ButterflyPins loaded");
}
}