Package com.teamjmonkey.entity

Source Code of com.teamjmonkey.entity.CreatureArmadilo

package com.teamjmonkey.entity;

import com.teamjmonkey.animation.AnimComponent;
import com.teamjmonkey.graphics.Graphics;

public class CreatureArmadilo extends Creature {

    public CreatureArmadilo() {
        super(Graphics.ARMADILO, 6f, 200f); //TODO adjust
        spatial.setName("armadilo");

        animComponent = new AnimComponent(spatial);
    }
}
TOP

Related Classes of com.teamjmonkey.entity.CreatureArmadilo

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.