From 339b565211626bec2b1e5b6c3760eba762096ebd Mon Sep 17 00:00:00 2001 From: dtookey Date: Sun, 6 Aug 2023 20:35:32 -0400 Subject: [PATCH] missed a docstring on an interface --- src/main/kotlin/RSLogic.kt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/RSLogic.kt b/src/main/kotlin/RSLogic.kt index f8cad39..b622649 100644 --- a/src/main/kotlin/RSLogic.kt +++ b/src/main/kotlin/RSLogic.kt @@ -1,7 +1,15 @@ import java.awt.Point import java.awt.event.KeyEvent - +/** + * Interface for a RuneScape orchestrator that can execute bot actions. + * + * This defines the capabilities that a RuneScape orchestrator needs to + * coordinate and perform bot actions like banking, traveling, and crafting. + * + * Implementations will contain the game-specific logic to interact with the + * RuneScape client and APIs to carry out the actions. + */ interface RSOrchestrator : Orchestrator{ companion object {