mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-06-30 19:11:39 +00:00

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.
14 lines
214 B
Java
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();
|
|
}
|