Package net.alphascripts.snake

Source Code of net.alphascripts.snake.Snake

package net.alphascripts.snake;

import net.alphascripts.snake.controller.SnakeController;
import net.alphascripts.snake.model.SnakeModel;
import net.alphascripts.snake.view.SnakeView;

/**
* Created with IntelliJ IDEA.
* User: Bram
* Date: 17-8-13
* Time: 3:14
* To change this template use File | Settings | File Templates.
*/
public class Snake {
    public static void main(String args[]){
        SnakeModel model = new SnakeModel();
        SnakeView view = new SnakeView(model);
        SnakeController controller = new SnakeController(model, view);
    }
}
TOP

Related Classes of net.alphascripts.snake.Snake

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.