Update Package Names

This commit is contained in:
peytonplayz595 2023-09-02 12:08:55 -05:00
parent e4962cc8f1
commit cb454d4b85
16 changed files with 24 additions and 17 deletions

View File

@ -8,6 +8,7 @@ import java.util.Arrays;
import java.util.List;
import java.util.StringTokenizer;
import net.PeytonPlayz585.shadow.reflections.Reflector;
import net.lax1dude.eaglercraft.v1_8.log4j.LogManager;
import net.lax1dude.eaglercraft.v1_8.log4j.Logger;
import net.minecraft.client.Minecraft;

View File

@ -5,6 +5,7 @@ import java.util.Collection;
import java.util.List;
import java.util.Properties;
import net.PeytonPlayz585.shadow.math.MathUtils;
import net.lax1dude.eaglercraft.v1_8.minecraft.EaglerTextureAtlasSprite;
import net.minecraft.block.properties.IProperty;
import net.minecraft.client.Minecraft;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.gui;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.gui;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.*;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.gui;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.math;
public class MathUtils {
public static int getAverage(int[] p_getAverage_0_) {

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;

View File

@ -1,7 +1,9 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;
import net.PeytonPlayz585.shadow.Config;
public class FieldLocatorName implements IFieldLocator {
private ReflectorClass reflectorClass = null;
private String targetFieldName = null;

View File

@ -1,7 +1,9 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;
import net.PeytonPlayz585.shadow.Config;
public class FieldLocatorType implements IFieldLocator {
private ReflectorClass reflectorClass;
private Class targetFieldType;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;
import java.util.List;

View File

@ -1,4 +1,6 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import net.PeytonPlayz585.shadow.Config;
public class ReflectorClass {
private String targetClassName;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Field;

View File

@ -1,4 +1,4 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
public class ReflectorFields {
private ReflectorClass reflectorClass;

View File

@ -1,9 +1,11 @@
package net.PeytonPlayz585.shadow;
package net.PeytonPlayz585.shadow.reflections;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import net.PeytonPlayz585.shadow.Config;
public class ReflectorMethod {
private ReflectorClass reflectorClass;
private String targetMethodName;

View File

@ -1,9 +1,6 @@
package net.minecraft.client.gui;
import java.io.IOException;
import net.PeytonPlayz585.shadow.*;
import net.minecraft.client.Minecraft;
import net.PeytonPlayz585.shadow.gui.*;
import net.minecraft.client.resources.I18n;
import net.minecraft.client.settings.GameSettings;