package tictactoe;
import tictactoe.app.*;
import tictactoe.pres.*;
import tictactoe.trans.*;

public class TTTDemo {
    
    public static void main (String[] args) {
	TTTFrame gameFrame = new TTTFrame(true);
	TTTApplication gameApp = new TTTApplication();
	TTTHandler gameTrans = new TTTHandler(gameFrame, gameApp);
	
    }
}
