electrodynamics/src/dark/api/IScroll.java
2013-07-26 02:17:17 -04:00

12 lines
307 B
Java

package dark.api;
public interface IScroll
{
/** Scrolls the text field up or down. Client side only. Positive value will scroll the text down
* while a negative value will scroll it up. */
public void scroll(int amount);
public void setScroll(int length);
public int getScroll();
}