TF-EssentialsX/Essentials/src/com/earth2me/essentials/textreader/IText.java
snowleo 0bbc1e540b motd and rules are now configured in the files motd.txt and rules.txt, values from config.yml are copied automatically
New features:
Info command now understands the tags from motd and rules
motd and rules are now multipage
On join, only the first page of motd is shown.
2011-11-18 04:18:03 +01:00

14 lines
214 B
Java

package com.earth2me.essentials.textreader;
import java.util.List;
import java.util.Map;
public interface IText
{
List<String> getLines();
List<String> getChapters();
Map<String, Integer> getBookmarks();
}