BungeeCord Chat API

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2014-12-13 02:59:14 +01:00
parent e5642b1949
commit 28e80d52a4
6 changed files with 339 additions and 22 deletions

View File

@@ -1860,6 +1860,24 @@ public interface Server extends PluginMessageRecipient {
public org.bukkit.configuration.file.YamlConfiguration getConfig() {
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* Sends the component to the player
*
* @param component the components to send
*/
public void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent component) {
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* Sends an array of components as a single message to the player
*
* @param components the components to send
*/
public void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
@NotNull