Package com.teamjmonkey.entity

Source Code of com.teamjmonkey.entity.CreatureElephant

package com.teamjmonkey.entity;

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

public class CreatureElephant extends Creature {

    public CreatureElephant() {
        super(Graphics.ELEPHANT, 6f, 300f); //TODO adjust
        spatial.setName("elephant");

        animComponent = new AnimComponent(spatial);
    }
}
TOP

Related Classes of com.teamjmonkey.entity.CreatureElephant

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.