Fix LaufbauLazyInit
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-08-27 15:05:25 +02:00
Ursprung f6db278214
Commit 8b9978102d

Datei anzeigen

@ -1,22 +1,24 @@
package de.steamwar.bausystem.features.slaves.laufbau;
import de.steamwar.bausystem.features.slaves.laufbau.boundingboxes.*;
import lombok.experimental.UtilityClass;
@UtilityClass
public class LaufbauLazyInit {
public static void init() {
}
static {
new BellBoundingBox();
new BrewingStandBoundingBox();
new ChorusPlantBoundingBox();
new FencesBoundingBox();
new GrindstoneBoundingBox();
new HopperBoundingBox();
new IronBarBoundingBox();
new LanternBoundingBox();
new StairBoundingBox();
new WallBoundingBox();
new BellBoundingBox().enable();
new BrewingStandBoundingBox().enable();
new ChorusPlantBoundingBox().enable();
new FencesBoundingBox().enable();
new GrindstoneBoundingBox().enable();
new HopperBoundingBox().enable();
new IronBarBoundingBox().enable();
new LanternBoundingBox().enable();
new StairBoundingBox().enable();
new WallBoundingBox().enable();
}
}