mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
SPIGOT-973: Add marker API to ArmorStand
This commit is contained in:
parent
de74383a57
commit
20de0ed871
1 changed files with 16 additions and 0 deletions
|
@ -258,4 +258,20 @@ public interface ArmorStand extends LivingEntity {
|
|||
* @param small whether this is scaled down
|
||||
*/
|
||||
void setSmall(boolean small);
|
||||
|
||||
/**
|
||||
* Returns whether this armor stand is a marker,
|
||||
* meaning it has a very small collision box
|
||||
*
|
||||
* @return whether this is a marker
|
||||
*/
|
||||
boolean isMarker();
|
||||
|
||||
/**
|
||||
* Sets whether this armor stand is a marker,
|
||||
* meaning it has a very small collision box
|
||||
*
|
||||
* @param marker whether this is a marker
|
||||
*/
|
||||
void setMarker(boolean marker);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue