Package main.ch.morrolan.gibb.snake

Examples of main.ch.morrolan.gibb.snake.Entity.die()


    }

    @Test
    public void die() {
        Entity entity = new Entity(0, 0);
        entity.die();
        assertEquals(false, entity.alive);
    }
}
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.