SPIGOT-973: Add marker API to ArmorStand

This commit is contained in:
Nathan Wolf 2015-06-08 13:05:05 -07:00 committed by md_5
parent de74383a57
commit 20de0ed871

View file

@ -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);
}