Package com.teamjmonkey.entity

Source Code of com.teamjmonkey.entity.CreatureOctopus

package com.teamjmonkey.entity;

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

public class CreatureOctopus extends Creature {

    public CreatureOctopus() {
        super(Graphics.OCTOPUS, 20f, 400f); //TODO adjust
        spatial.setName("octopus");

        animComponent = new AnimComponent(spatial);
    }
}
TOP

Related Classes of com.teamjmonkey.entity.CreatureOctopus

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.