Package org.spout.vanilla.component.entity.misc

Examples of org.spout.vanilla.component.entity.misc.Health.heal()


    health.kill(HealthChangeCause.DAMAGE);
    assertEquals(0.0f, health.getHealth(), 0.0f);
    assertTrue(health.isDead());

    health.heal(5.0f);
    assertEquals(5.0f, health.getHealth(), 0.0f);
    assertFalse(health.isDead());

    health.setDeathTicks(30);
    assertEquals(30, health.getDeathTicks());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.