PAPI Support WIP

This commit is contained in:
nossr50
2023-06-17 20:22:49 -07:00
parent cc1b511c02
commit f22043ebb5
19 changed files with 617 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package com.gmail.nossr50.placeholders;
import org.bukkit.entity.Player;
public interface Placeholder {
/**
* @param player the player to process the placeholder for
* @param params the paramaters to be passed to the placeholder
* @return the value of the placeholder
*/
String process(Player player, String params);
/**
* @return the name of the placeholder
*/
String getName();
}