Package com.ewgenius.xonix

Source Code of com.ewgenius.xonix.XonixGame

package com.ewgenius.xonix;

import com.ewgenius.xonix.levels.Level1;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.state.StateBasedGame;

/**
* Created with IntelliJ IDEA.
* User: ewgenius
* Date: 24.07.13
* Time: 14:58
* To change this template use File | Settings | File Templates.
*/
public class XonixGame extends StateBasedGame {
    public XonixGame(String gamename) {
        super(gamename);
    }

    public void initStatesList(GameContainer container) {
        addState(new Level1());
    }
}
TOP

Related Classes of com.ewgenius.xonix.XonixGame

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.