aboutsummaryrefslogblamecommitdiff
path: root/src/main/java/org/chrisoft/trashyaddon/Addon.java
blob: a956b6c8da5554c26f91afc53d95f96fad2afdcc (plain) (tree)
1
2
3
4
5
6

                                 
                                           


                                                         


















                                                                       
                                             
















                                              
package org.chrisoft.trashyaddon;

import org.chrisoft.trashyaddon.commands.*;
import com.mojang.logging.LogUtils;
import meteordevelopment.meteorclient.addons.MeteorAddon;
import meteordevelopment.meteorclient.commands.Commands;
import org.slf4j.Logger;

public class Addon extends MeteorAddon {
    public static final Logger LOG = LogUtils.getLogger();
    //public static final Category CATEGORY = new Category("Example");
    //public static final HudGroup HUD_GROUP = new HudGroup("Example");

    @Override
    public void onInitialize() {
        LOG.info("Initializing Meteor Trash Addons");

        // Modules
        //Modules.get().add(new ModuleExample());

        // Commands
        Commands.add(new EntityDataCommand());
        Commands.add(new BlockDataCommand());
        Commands.add(new MapDumpCommand());
        Commands.add(new MapTallyCommand());
        Commands.add(new MapLocateCommand());

        // HUD
        //Hud.get().register(HudExample.INFO);
    }

    /*
    @Override
    public void onRegisterCategories() {
        Modules.registerCategory(CATEGORY);
    }
    */

    @Override
    public String getPackage() {
        return "org.chrisoft.trashyaddon";
    }
}