Chroma-Chat/TheButtonAutoFlair/src/tk/sznp/thebuttonautoflair/PlayerJoinTimerTask.java

13 lines
204 B
Java
Raw Normal View History

package tk.sznp.thebuttonautoflair;
import java.util.TimerTask;
public abstract class PlayerJoinTimerTask extends TimerTask {
@Override
public abstract void run();
public MaybeOfflinePlayer mp;
}