Package com.lunivore.noughtsandcrosses

Source Code of com.lunivore.noughtsandcrosses.NoughtsAndCrosses

package com.lunivore.noughtsandcrosses;

import com.lunivore.noughtsandcrosses.game.GameModel;
import com.lunivore.noughtsandcrosses.view.NoughtsAndCrossesFrame;

public class NoughtsAndCrosses {

    public NoughtsAndCrosses() {
        new NoughtsAndCrossesFrame(new GameModel());
    }
   
    public static void main(String[] args) {
        new NoughtsAndCrosses();
    }
}
TOP

Related Classes of com.lunivore.noughtsandcrosses.NoughtsAndCrosses

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.