mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-03 00:38:00 +00:00
29 lines
581 B
Java
29 lines
581 B
Java
package org.rev317.min.debug;
|
|
|
|
import org.parabot.core.Context;
|
|
import org.parabot.core.paint.AbstractDebugger;
|
|
import org.parabot.environment.input.Mouse;
|
|
|
|
import java.awt.*;
|
|
|
|
public class DMouse extends AbstractDebugger {
|
|
|
|
private boolean enabled;
|
|
|
|
@Override
|
|
public void paint(Graphics g) {
|
|
Context.getInstance().getPaintDebugger().addLine("Mouse: " + Mouse.getInstance().getPoint().toString());
|
|
}
|
|
|
|
@Override
|
|
public boolean isEnabled() {
|
|
return enabled;
|
|
}
|
|
|
|
@Override
|
|
public void toggle() {
|
|
enabled = !enabled;
|
|
}
|
|
|
|
}
|