feat: 调整实体加速器文件结构

This commit is contained in:
C-H716 2025-09-11 17:13:39 +08:00
parent b705a7c912
commit 255b8aeb1c
7 changed files with 10 additions and 10 deletions

View File

@ -2,13 +2,13 @@ package com.extendedae_plus;
import appeng.init.client.InitScreens;
import appeng.menu.locator.MenuLocators;
import com.extendedae_plus.ae.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.ae.screen.EntitySpeedTickerScreen;
import com.extendedae_plus.client.ClientProxy;
import com.extendedae_plus.config.ModConfigs;
import com.extendedae_plus.init.*;
import com.extendedae_plus.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.menu.locator.CuriosItemLocator;
import com.extendedae_plus.network.ModNetwork;
import com.extendedae_plus.screen.EntitySpeedTickerScreen;
import net.minecraft.resources.ResourceLocation;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.client.event.ModelEvent;

View File

@ -1,4 +1,4 @@
package com.extendedae_plus.items;
package com.extendedae_plus.ae.items;
import appeng.items.parts.PartItem;
import com.extendedae_plus.ae.parts.EntitySpeedTickerPart;

View File

@ -1,11 +1,11 @@
package com.extendedae_plus.menu;
package com.extendedae_plus.ae.menu;
import appeng.core.definitions.AEItems;
import appeng.menu.implementations.UpgradeableMenu;
import appeng.menu.slot.OptionalFakeSlot;
import com.extendedae_plus.ae.parts.EntitySpeedTickerPart;
import com.extendedae_plus.ae.screen.EntitySpeedTickerScreen;
import com.extendedae_plus.init.ModMenuTypes;
import com.extendedae_plus.screen.EntitySpeedTickerScreen;
import net.minecraft.client.Minecraft;
import net.minecraft.world.entity.player.Inventory;

View File

@ -18,8 +18,8 @@ import appeng.menu.locator.MenuLocators;
import appeng.parts.PartModel;
import appeng.parts.automation.UpgradeablePart;
import com.extendedae_plus.ExtendedAEPlus;
import com.extendedae_plus.ae.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.init.ModMenuTypes;
import com.extendedae_plus.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.util.PowerUtils;
import net.minecraft.core.BlockPos;
import net.minecraft.network.chat.Component;

View File

@ -1,8 +1,8 @@
package com.extendedae_plus.screen;
package com.extendedae_plus.ae.screen;
import appeng.client.gui.implementations.UpgradeableScreen;
import appeng.client.gui.style.ScreenStyle;
import com.extendedae_plus.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.ae.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.util.PowerUtils;
import net.minecraft.network.chat.Component;
import net.minecraft.world.entity.player.Inventory;

View File

@ -4,7 +4,7 @@ import appeng.api.parts.IPart;
import appeng.api.parts.PartModels;
import appeng.items.parts.PartModelsHelper;
import com.extendedae_plus.ExtendedAEPlus;
import com.extendedae_plus.items.EntitySpeedTickerPartItem;
import com.extendedae_plus.ae.items.EntitySpeedTickerPartItem;
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.Item;
import net.minecraftforge.registries.DeferredRegister;

View File

@ -2,8 +2,8 @@ package com.extendedae_plus.init;
import appeng.menu.implementations.MenuTypeBuilder;
import com.extendedae_plus.ExtendedAEPlus;
import com.extendedae_plus.ae.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.ae.parts.EntitySpeedTickerPart;
import com.extendedae_plus.menu.EntitySpeedTickerMenu;
import com.extendedae_plus.menu.NetworkPatternControllerMenu;
import net.minecraft.world.inventory.MenuType;
import net.minecraftforge.common.extensions.IForgeMenuType;