Package de.zelosfan.timedstrategy.etc

Examples of de.zelosfan.timedstrategy.etc.Reste


        LinkedList<Entity> dumpList = new LinkedList<>();

        for (Entity entity: world.entities) {
            if (entity.health <= 0) {
                Main.audioManager.playSound("explosion0.wav");
                effects.add(new Reste(entity));
                entity.tile.entity = null;
                entity.tile.locked = false;
                entity.tile = null;
                dumpList.add(entity);
            }
View Full Code Here

TOP

Related Classes of de.zelosfan.timedstrategy.etc.Reste

Copyright © 2018 www.massapicom. 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.