some more shit

This commit is contained in:
Trixkz
2021-11-21 10:12:16 -05:00
parent 4e54849ae4
commit 002b05820e
26 changed files with 868 additions and 112 deletions

View File

@ -0,0 +1,25 @@
package assemble;
import org.bukkit.entity.Player;
import java.util.List;
public interface AssembleAdapter {
/**
* Get's the scoreboard title.
*
* @param player who's title is being displayed.
* @return title.
*/
String getTitle(Player player);
/**
* Get's the scoreboard lines.
*
* @param player who's lines are being displayed.
* @return lines.
*/
List<String> getLines(Player player);
}