mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-15 04:31:44 +01:00
Added EntityLlama
This commit is contained in:
parent
78bf5dda05
commit
66f038113f
@ -0,0 +1,13 @@
|
|||||||
|
package net.minestom.server.entity.type.animal;
|
||||||
|
|
||||||
|
import net.minestom.server.entity.EntityCreature;
|
||||||
|
import net.minestom.server.entity.EntityType;
|
||||||
|
import net.minestom.server.entity.type.Animal;
|
||||||
|
import net.minestom.server.utils.Position;
|
||||||
|
|
||||||
|
public class EntityLlama extends EntityCreature implements Animal {
|
||||||
|
public EntityLlama(Position spawnPosition) {
|
||||||
|
super(EntityType.LLAMA, spawnPosition);
|
||||||
|
setBoundingBox(0.45f, 0.9375f, 0.45f);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user