Fix devbuild compat.

This commit is contained in:
seasnail8169 2021-04-04 23:16:33 +01:00
parent 3e317f8184
commit c9de5cae74
3 changed files with 6 additions and 10 deletions

View File

@ -3,8 +3,8 @@ package meteordevelopment.addons.example;
import meteordevelopment.addons.example.modules.ExampleModule; import meteordevelopment.addons.example.modules.ExampleModule;
import meteordevelopment.addons.example.modules.ExampleModule2; import meteordevelopment.addons.example.modules.ExampleModule2;
import minegame159.meteorclient.MeteorAddon; import minegame159.meteorclient.MeteorAddon;
import minegame159.meteorclient.modules.Category; import minegame159.meteorclient.systems.modules.Category;
import minegame159.meteorclient.modules.Modules; import minegame159.meteorclient.systems.modules.Modules;
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;

View File

@ -1,12 +1,10 @@
package meteordevelopment.addons.example.modules; package meteordevelopment.addons.example.modules;
import meteordevelopment.addons.example.ExampleAddon; import meteordevelopment.addons.example.ExampleAddon;
import minegame159.meteorclient.modules.Module; import minegame159.meteorclient.systems.modules.Module;
public class ExampleModule extends Module { public class ExampleModule extends Module {
public ExampleModule() { public ExampleModule() {
super(ExampleAddon.CATEGORY, "example", "This is an example module inside a custom category."); super(ExampleAddon.CATEGORY, "example", "This is an example module inside a custom category.");
} }
} }

View File

@ -1,12 +1,10 @@
package meteordevelopment.addons.example.modules; package meteordevelopment.addons.example.modules;
import minegame159.meteorclient.modules.Categories; import minegame159.meteorclient.systems.modules.Categories;
import minegame159.meteorclient.modules.Module; import minegame159.meteorclient.systems.modules.Module;
public class ExampleModule2 extends Module { public class ExampleModule2 extends Module {
public ExampleModule2() { public ExampleModule2() {
super(Categories.Player, "example-2", "This is an example module that is in an existing category."); super(Categories.Player, "example-2", "This is an example module that is in an existing category.");
} }
}
}