From 02a04773c6aadf4b94acb6adacff15f2b60b066f Mon Sep 17 00:00:00 2001 From: Brady Date: Tue, 2 Oct 2018 15:27:25 -0500 Subject: [PATCH] bad javadocs --- .../java/baritone/api/IBaritoneProvider.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/api/java/baritone/api/IBaritoneProvider.java b/src/api/java/baritone/api/IBaritoneProvider.java index 03b457bb..52dae153 100644 --- a/src/api/java/baritone/api/IBaritoneProvider.java +++ b/src/api/java/baritone/api/IBaritoneProvider.java @@ -26,15 +26,45 @@ import baritone.api.cache.IWorldProvider; */ public interface IBaritoneProvider { + /** + * @see IFollowBehavior + * + * @return The {@link IFollowBehavior} instance + */ IFollowBehavior getFollowBehavior(); + /** + * @see ILookBehavior + * + * @return The {@link ILookBehavior} instance + */ ILookBehavior getLookBehavior(); + /** + * @see IMemoryBehavior + * + * @return The {@link IMemoryBehavior} instance + */ IMemoryBehavior getMemoryBehavior(); + /** + * @see IMineBehavior + * + * @return The {@link IMineBehavior} instance + */ IMineBehavior getMineBehavior(); + /** + * @see IPathingBehavior + * + * @return The {@link IPathingBehavior} instance + */ IPathingBehavior getPathingBehavior(); + /** + * @see IWorldProvider + * + * @return The {@link IWorldProvider} instance + */ IWorldProvider getWorldProvider(); }