geforkt von Mirrors/Paper
SPIGOT-7809: Add ShieldMeta
By: Doc <nachito94@msn.com>
Dieser Commit ist enthalten in:
Ursprung
ecf335eebe
Commit
fa9505e579
27
paper-api/src/main/java/org/bukkit/inventory/meta/ShieldMeta.java
Normale Datei
27
paper-api/src/main/java/org/bukkit/inventory/meta/ShieldMeta.java
Normale Datei
@ -0,0 +1,27 @@
|
||||
package org.bukkit.inventory.meta;
|
||||
|
||||
import org.bukkit.DyeColor;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public interface ShieldMeta extends BannerMeta {
|
||||
|
||||
/**
|
||||
* Gets the base color for this shield.
|
||||
*
|
||||
* @return the base color or null
|
||||
*/
|
||||
@Nullable
|
||||
DyeColor getBaseColor();
|
||||
|
||||
/**
|
||||
* Sets the base color for this shield.
|
||||
* <br>
|
||||
* <b>Note:</b> If the shield contains a
|
||||
* {@link org.bukkit.block.banner.Pattern}, then a null base color will
|
||||
* retain the pattern but default the base color to {@link DyeColor#WHITE}.
|
||||
*
|
||||
* @param color the base color or null
|
||||
*/
|
||||
void setBaseColor(@Nullable DyeColor color);
|
||||
|
||||
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren