Skip to content

Instantly share code, notes, and snippets.

View nuno1212s's full-sized avatar

Nuno Neto nuno1212s

View GitHub Profile
@nuno1212s
nuno1212s / ScrollingString.java
Last active February 15, 2016 14:59 — forked from DarkBlade12/ScrollingString.java
Implementation of a scrolling string.
public class ScrollingString {
private String original;
private int width;
private int position;
private ChatColor color = ChatColor.RESET;
public ScrollingString(String original, int width) {
this.original = original;
//Allow for colors
this.width = width-2;