mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
15 lines
214 B
Java
15 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();
|
||
|
}
|