SPIGOT-4742: Make Sign Colorable

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-04-25 14:49:17 +10:00
parent ddfd4b10c4
commit 5908b5a155

View File

@@ -1,11 +1,12 @@
package org.bukkit.block; package org.bukkit.block;
import org.bukkit.material.Colorable;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**
* Represents a captured state of either a SignPost or a WallSign. * Represents a captured state of either a SignPost or a WallSign.
*/ */
public interface Sign extends TileState { public interface Sign extends TileState, Colorable {
/** /**
* Gets all the lines of text currently on this sign. * Gets all the lines of text currently on this sign.