baritone/src/api/java/baritone/api/IBaritone.java

80 lines
2.2 KiB
Java
Raw Normal View History

2018-11-04 05:11:52 +00:00
/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
package baritone.api;
2018-11-05 22:41:17 +00:00
import baritone.api.behavior.ILookBehavior;
import baritone.api.behavior.IPathingBehavior;
2018-11-04 05:11:52 +00:00
import baritone.api.cache.IWorldProvider;
2018-11-14 22:29:15 +00:00
import baritone.api.event.listener.IEventBus;
import baritone.api.pathing.calc.IPathingControlManager;
2018-11-05 22:41:17 +00:00
import baritone.api.process.ICustomGoalProcess;
2018-11-04 05:11:52 +00:00
import baritone.api.process.IFollowProcess;
2018-11-05 22:41:17 +00:00
import baritone.api.process.IGetToBlockProcess;
2018-11-04 05:11:52 +00:00
import baritone.api.process.IMineProcess;
import baritone.api.utils.IInputOverrideHandler;
import baritone.api.utils.IPlayerContext;
2018-11-04 05:11:52 +00:00
/**
* @author Brady
* @since 9/29/2018
*/
public interface IBaritone {
/**
* @return The {@link IFollowProcess} instance
* @see IFollowProcess
*/
IFollowProcess getFollowProcess();
/**
* @return The {@link ILookBehavior} instance
* @see ILookBehavior
*/
ILookBehavior getLookBehavior();
/**
* @return The {@link IMineProcess} instance
* @see IMineProcess
*/
IMineProcess getMineProcess();
/**
* @return The {@link IPathingBehavior} instance
* @see IPathingBehavior
*/
IPathingBehavior getPathingBehavior();
/**
* @return The {@link IWorldProvider} instance
* @see IWorldProvider
*/
IWorldProvider getWorldProvider();
IPathingControlManager getPathingControlManager();
IInputOverrideHandler getInputOverrideHandler();
2018-11-05 22:41:17 +00:00
ICustomGoalProcess getCustomGoalProcess();
IGetToBlockProcess getGetToBlockProcess();
IPlayerContext getPlayerContext();
2018-11-14 22:29:15 +00:00
IEventBus getGameEventHandler();
2018-11-04 05:11:52 +00:00
}