Fix devbuild compat.
This commit is contained in:
parent
3e317f8184
commit
c9de5cae74
@ -3,8 +3,8 @@ package meteordevelopment.addons.example;
|
||||
import meteordevelopment.addons.example.modules.ExampleModule;
|
||||
import meteordevelopment.addons.example.modules.ExampleModule2;
|
||||
import minegame159.meteorclient.MeteorAddon;
|
||||
import minegame159.meteorclient.modules.Category;
|
||||
import minegame159.meteorclient.modules.Modules;
|
||||
import minegame159.meteorclient.systems.modules.Category;
|
||||
import minegame159.meteorclient.systems.modules.Modules;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
|
@ -1,12 +1,10 @@
|
||||
package meteordevelopment.addons.example.modules;
|
||||
|
||||
import meteordevelopment.addons.example.ExampleAddon;
|
||||
import minegame159.meteorclient.modules.Module;
|
||||
import minegame159.meteorclient.systems.modules.Module;
|
||||
|
||||
public class ExampleModule extends Module {
|
||||
|
||||
public ExampleModule() {
|
||||
super(ExampleAddon.CATEGORY, "example", "This is an example module inside a custom category.");
|
||||
}
|
||||
|
||||
}
|
@ -1,12 +1,10 @@
|
||||
package meteordevelopment.addons.example.modules;
|
||||
|
||||
import minegame159.meteorclient.modules.Categories;
|
||||
import minegame159.meteorclient.modules.Module;
|
||||
import minegame159.meteorclient.systems.modules.Categories;
|
||||
import minegame159.meteorclient.systems.modules.Module;
|
||||
|
||||
public class ExampleModule2 extends Module {
|
||||
|
||||
public ExampleModule2() {
|
||||
super(Categories.Player, "example-2", "This is an example module that is in an existing category.");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user