mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
![snowleo](/assets/img/avatar_default.png)
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();
|
|
}
|