api: finish some thoughts in callbacks javadoc

This commit is contained in:
Adam
2020-05-27 21:09:27 -04:00
parent 7cc36acd9a
commit 1bcb25f10b

View File

@@ -48,10 +48,14 @@ import net.runelite.api.widgets.WidgetInfo;
public interface Client extends GameEngine public interface Client extends GameEngine
{ {
/** /**
* The client invokes these callbacks to communicate to * The injected client invokes these callbacks to send events to us
*/ */
Callbacks getCallbacks(); Callbacks getCallbacks();
/**
* The injected client invokes these callbacks for scene drawing, which is
* used by the gpu plugin to override the client's normal scene drawing code
*/
DrawCallbacks getDrawCallbacks(); DrawCallbacks getDrawCallbacks();
void setDrawCallbacks(DrawCallbacks drawCallbacks); void setDrawCallbacks(DrawCallbacks drawCallbacks);