Package game.habits

Examples of game.habits.ButtonHabit


import game.habits.ButtonHabit;

public final class PlayButtonActor extends DefaultActor implements ButtonHabit.Listener {
    @Override
    public void onAdd() {
        addHabit(new ButtonHabit(new Vector(64, 64), getStage().getLibrary().findImage("Play Button").getFrames(140),
                this));
    }
View Full Code Here


public final class StopButtonActor extends DefaultActor implements ButtonHabit.Listener {
    @Override
    public void onAdd() {
        Image image = getStage().getLibrary().findImage("Stop Button");
        addHabit(new ButtonHabit(new Vector(64, 192), image.getFrames(image.getWidth() / 3), this));
    }
View Full Code Here

TOP

Related Classes of game.habits.ButtonHabit

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.