missed a docstring on an interface

This commit is contained in:
dtookey 2023-08-06 20:35:32 -04:00
parent fb7acdd401
commit 339b565211

View File

@ -1,7 +1,15 @@
import java.awt.Point import java.awt.Point
import java.awt.event.KeyEvent 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{ interface RSOrchestrator : Orchestrator{
companion object { companion object {