Skip to content

Commit

Permalink
Changed the main path
Browse files Browse the repository at this point in the history
  • Loading branch information
kill05 committed Jun 19, 2024
1 parent e2496e6 commit cb25ac3
Show file tree
Hide file tree
Showing 63 changed files with 229 additions and 229 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.github.kill05;

import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.blocks.architectstation.inventory.ArchitectStationGuiFactory;
import com.github.kill05.blocks.architectstation.inventory.part.PartModeContainer;
import com.github.kill05.blocks.architectstation.inventory.part.PartModeGui;
import com.github.kill05.blocks.architectstation.inventory.tool.ToolModeContainer;
import com.github.kill05.blocks.architectstation.inventory.tool.ToolModeGui;
package com.github.kill05.architectstools;

import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.blocks.architectstation.inventory.ArchitectStationGuiFactory;
import com.github.kill05.architectstools.blocks.architectstation.inventory.part.PartModeContainer;
import com.github.kill05.architectstools.blocks.architectstation.inventory.part.PartModeGui;
import com.github.kill05.architectstools.blocks.architectstation.inventory.tool.ToolModeContainer;
import com.github.kill05.architectstools.blocks.architectstation.inventory.tool.ToolModeGui;
import net.minecraft.client.entity.player.EntityPlayerSP;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.core.player.inventory.Container;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
package com.github.kill05;

import com.github.kill05.blocks.architectstation.ArchitectTableBlock;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.config.ArchitectConfig;
import com.github.kill05.exceptions.ArchitectItemException;
import com.github.kill05.exceptions.InvalidMaterialException;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.items.part.PartType;
import com.github.kill05.items.tool.ArchitectTool;
import com.github.kill05.items.tool.ToolPartInfo;
import com.github.kill05.materials.ArchitectMaterial;
import com.github.kill05.materials.MaterialInfo;
import com.github.kill05.recipe.RecipeEntryRepairTool;
import com.github.kill05.utils.ClassUtils;
import com.github.kill05.utils.ItemUtils;
package com.github.kill05.architectstools;

import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableBlock;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.config.ArchitectConfig;
import com.github.kill05.architectstools.exceptions.ArchitectItemException;
import com.github.kill05.architectstools.exceptions.InvalidMaterialException;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import com.github.kill05.architectstools.items.part.PartType;
import com.github.kill05.architectstools.items.tool.ArchitectTool;
import com.github.kill05.architectstools.items.tool.ToolPartInfo;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import com.github.kill05.architectstools.materials.MaterialInfo;
import com.github.kill05.architectstools.recipe.RecipeEntryRepairTool;
import com.github.kill05.architectstools.utils.ClassUtils;
import com.github.kill05.architectstools.utils.ItemUtils;
import com.mojang.nbt.ListTag;
import com.mojang.nbt.StringTag;
import net.fabricmc.api.ModInitializer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05;
package com.github.kill05.architectstools;

import net.minecraft.core.lang.I18n;
import turniplabs.halplibe.mixin.accessors.LanguageAccessor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05;
package com.github.kill05.architectstools;

import org.objectweb.asm.tree.ClassNode;
import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.github.kill05.blocks.architectstation;
package com.github.kill05.architectstools.blocks.architectstation;

import com.github.kill05.ArchitectGuis;
import com.github.kill05.config.ArchitectConfig;
import com.github.kill05.utils.InventoryUtils;
import com.github.kill05.architectstools.ArchitectGuis;
import com.github.kill05.architectstools.config.ArchitectConfig;
import com.github.kill05.architectstools.utils.InventoryUtils;
import net.minecraft.core.block.BlockTileEntity;
import net.minecraft.core.block.entity.TileEntity;
import net.minecraft.core.block.material.Material;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.github.kill05.blocks.architectstation;
package com.github.kill05.architectstools.blocks.architectstation;

import com.github.kill05.ArchitectTools;
import com.github.kill05.items.IArchitectItem;
import com.github.kill05.utils.RenderUtils;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.IArchitectItem;
import com.github.kill05.architectstools.utils.RenderUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.render.tessellator.Tessellator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.blocks.architectstation;
package com.github.kill05.architectstools.blocks.architectstation;

import com.github.kill05.ArchitectTools;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.items.tool.ArchitectTool;
import com.github.kill05.utils.InventoryUtils;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import com.github.kill05.architectstools.items.tool.ArchitectTool;
import com.github.kill05.architectstools.utils.InventoryUtils;
import com.mojang.nbt.CompoundTag;
import net.minecraft.core.block.entity.TileEntity;
import net.minecraft.core.net.packet.Packet;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.github.kill05.blocks.architectstation.inventory;
package com.github.kill05.architectstools.blocks.architectstation.inventory;

import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.inventory.container.TileContainer;
import com.github.kill05.items.IArchitectItem;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.items.IArchitectItem;
import com.github.kill05.architectstools.inventory.container.TileContainer;
import net.minecraft.core.block.entity.TileEntity;
import net.minecraft.core.player.inventory.IInventory;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.github.kill05.blocks.architectstation.inventory;

import com.github.kill05.blocks.architectstation.ArchitectTableButton;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.inventory.button.ItemTexturedButton;
import com.github.kill05.inventory.container.TileContainer;
import com.github.kill05.inventory.gui.TileContainerGui;
import com.github.kill05.items.IArchitectItem;
package com.github.kill05.architectstools.blocks.architectstation.inventory;

import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.items.IArchitectItem;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableButton;
import com.github.kill05.architectstools.inventory.button.ItemTexturedButton;
import com.github.kill05.architectstools.inventory.container.TileContainer;
import com.github.kill05.architectstools.inventory.gui.TileContainerGui;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.core.entity.player.EntityPlayer;
import net.minecraft.core.item.Item;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.github.kill05.blocks.architectstation.inventory;
package com.github.kill05.architectstools.blocks.architectstation.inventory;

import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.items.IArchitectItem;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.items.IArchitectItem;
import net.minecraft.core.entity.player.EntityPlayer;
import org.jetbrains.annotations.NotNull;
import turniplabs.halplibe.helper.gui.factory.block.TileGuiFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.blocks.architectstation.inventory.part;
package com.github.kill05.architectstools.blocks.architectstation.inventory.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.blocks.architectstation.inventory.ArchitectStationContainer;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.blocks.architectstation.inventory.ArchitectStationContainer;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import net.minecraft.core.InventoryAction;
import net.minecraft.core.entity.player.EntityPlayer;
import net.minecraft.core.player.inventory.slot.Slot;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.github.kill05.blocks.architectstation.inventory.part;
package com.github.kill05.architectstools.blocks.architectstation.inventory.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.blocks.architectstation.inventory.ArchitectStationGui;
import com.github.kill05.inventory.container.TileContainer;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.materials.ArchitectMaterial;
import com.github.kill05.materials.MaterialInfo;
import com.github.kill05.utils.RenderUtils;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.blocks.architectstation.inventory.ArchitectStationGui;
import com.github.kill05.architectstools.inventory.container.TileContainer;
import com.github.kill05.architectstools.materials.MaterialInfo;
import com.github.kill05.architectstools.utils.RenderUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.render.FontRenderer;
import net.minecraft.core.entity.player.EntityPlayer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.kill05.blocks.architectstation.inventory.part;
package com.github.kill05.architectstools.blocks.architectstation.inventory.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.architectstools.ArchitectTools;
import net.minecraft.core.item.ItemStack;
import net.minecraft.core.player.inventory.IInventory;
import net.minecraft.core.player.inventory.slot.Slot;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.github.kill05.blocks.architectstation.inventory.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.exceptions.ArchitectItemException;
import com.github.kill05.exceptions.InvalidMaterialException;
import com.github.kill05.inventory.slot.OutputSlot;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.materials.MaterialInfo;
import com.github.kill05.utils.ItemUtils;
package com.github.kill05.architectstools.blocks.architectstation.inventory.part;

import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.exceptions.ArchitectItemException;
import com.github.kill05.architectstools.exceptions.InvalidMaterialException;
import com.github.kill05.architectstools.inventory.slot.OutputSlot;
import com.github.kill05.architectstools.materials.MaterialInfo;
import com.github.kill05.architectstools.utils.ItemUtils;
import net.minecraft.core.item.ItemStack;
import net.minecraft.core.player.inventory.IInventory;
import org.jetbrains.annotations.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.blocks.architectstation.inventory.tool;
package com.github.kill05.architectstools.blocks.architectstation.inventory.tool;

import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.blocks.architectstation.inventory.ArchitectStationContainer;
import com.github.kill05.items.tool.ArchitectTool;
import com.github.kill05.items.tool.ToolPartInfo;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.blocks.architectstation.inventory.ArchitectStationContainer;
import com.github.kill05.architectstools.items.tool.ArchitectTool;
import com.github.kill05.architectstools.items.tool.ToolPartInfo;
import net.minecraft.core.InventoryAction;
import net.minecraft.core.entity.player.EntityPlayer;
import net.minecraft.core.item.Item;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.github.kill05.blocks.architectstation.inventory.tool;
package com.github.kill05.architectstools.blocks.architectstation.inventory.tool;

import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.blocks.architectstation.inventory.ArchitectStationGui;
import com.github.kill05.inventory.container.TileContainer;
import com.github.kill05.items.tool.ArchitectTool;
import com.github.kill05.items.tool.ToolPartInfo;
import com.github.kill05.utils.RenderUtils;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.blocks.architectstation.inventory.ArchitectStationGui;
import com.github.kill05.architectstools.inventory.container.TileContainer;
import com.github.kill05.architectstools.items.tool.ArchitectTool;
import com.github.kill05.architectstools.items.tool.ToolPartInfo;
import com.github.kill05.architectstools.utils.RenderUtils;
import net.minecraft.core.entity.player.EntityPlayer;
import org.lwjgl.opengl.GL11;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.blocks.architectstation.inventory.tool;
package com.github.kill05.architectstools.blocks.architectstation.inventory.tool;

import com.github.kill05.ArchitectTools;
import com.github.kill05.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.exceptions.ArchitectItemException;
import com.github.kill05.inventory.slot.OutputSlot;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.blocks.architectstation.ArchitectTableTileEntity;
import com.github.kill05.architectstools.exceptions.ArchitectItemException;
import com.github.kill05.architectstools.inventory.slot.OutputSlot;
import net.minecraft.core.item.ItemStack;
import net.minecraft.core.player.inventory.IInventory;
import org.jetbrains.annotations.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.config;
package com.github.kill05.architectstools.config;

import turniplabs.halplibe.util.TomlConfigHandler;
import turniplabs.halplibe.util.toml.Toml;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.exceptions;
package com.github.kill05.architectstools.exceptions;

public class ArchitectItemException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.exceptions;
package com.github.kill05.architectstools.exceptions;

public class InvalidMaterialException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.inventory;
package com.github.kill05.architectstools.inventory;

import net.minecraft.core.entity.player.EntityPlayer;
import net.minecraft.core.item.ItemStack;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.inventory.button;
package com.github.kill05.architectstools.inventory.button;

import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.inventory.container;
package com.github.kill05.architectstools.inventory.container;

import net.minecraft.core.block.entity.TileEntity;
import net.minecraft.core.entity.player.EntityPlayer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.kill05.inventory.gui;
package com.github.kill05.architectstools.inventory.gui;

import com.github.kill05.inventory.container.TileContainer;
import com.github.kill05.architectstools.inventory.container.TileContainer;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiContainer;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.inventory.slot;
package com.github.kill05.architectstools.inventory.slot;

import net.minecraft.core.entity.player.EntityPlayer;
import net.minecraft.core.item.ItemStack;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.kill05.items;
package com.github.kill05.architectstools.items;

import net.minecraft.core.item.IItemConvertible;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.items.model;
package com.github.kill05.architectstools.items.model;

import com.github.kill05.ArchitectTools;
import com.github.kill05.items.part.ArchitectPart;
import com.github.kill05.materials.ArchitectMaterial;
import com.github.kill05.materials.MaterialType;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.part.ArchitectPart;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import com.github.kill05.architectstools.materials.MaterialType;
import net.minecraft.client.render.item.model.ItemModelStandard;
import net.minecraft.client.render.stitcher.IconCoordinate;
import net.minecraft.core.entity.Entity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.kill05.items.model;
package com.github.kill05.architectstools.items.model;

import com.github.kill05.ArchitectTools;
import com.github.kill05.items.tool.ArchitectTool;
import com.github.kill05.items.tool.ToolPartInfo;
import com.github.kill05.materials.ArchitectMaterial;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.tool.ArchitectTool;
import com.github.kill05.architectstools.items.tool.ToolPartInfo;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import net.minecraft.client.Minecraft;
import net.minecraft.client.render.FontRenderer;
import net.minecraft.client.render.RenderEngine;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.github.kill05.items.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.config.ArchitectConfig;
import com.github.kill05.items.IArchitectItem;
import com.github.kill05.items.model.ArchitectPartModel;
import com.github.kill05.items.part.statistics.PartStatistic;
import com.github.kill05.items.part.statistics.PartStatistics;
import com.github.kill05.materials.ArchitectMaterial;
package com.github.kill05.architectstools.items.part;

import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.config.ArchitectConfig;
import com.github.kill05.architectstools.items.IArchitectItem;
import com.github.kill05.architectstools.items.model.ArchitectPartModel;
import com.github.kill05.architectstools.items.part.statistics.PartStatistic;
import com.github.kill05.architectstools.items.part.statistics.PartStatistics;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import net.minecraft.core.item.Item;
import net.minecraft.core.item.ItemStack;
import net.minecraft.core.item.tag.ItemTags;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.github.kill05.items.part;
package com.github.kill05.architectstools.items.part;

import com.github.kill05.ArchitectTools;
import com.github.kill05.items.part.statistics.PartStatistics;
import com.github.kill05.materials.ArchitectMaterial;
import com.github.kill05.architectstools.ArchitectTools;
import com.github.kill05.architectstools.items.part.statistics.PartStatistics;
import com.github.kill05.architectstools.materials.ArchitectMaterial;
import net.minecraft.core.lang.I18n;

public enum PartType {
Expand Down
Loading

0 comments on commit cb25ac3

Please sign in to comment.