mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-13 23:26:48 +01:00
8 lines
182 B
Java
8 lines
182 B
Java
package me.clip.placeholderapi.expansion;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
public interface Relational {
|
|
String onPlaceholderRequest(Player one, Player two, String identifier);
|
|
}
|