29 lines
540 B
Java
29 lines
540 B
Java
package Uebung_04;
|
|
|
|
/**
|
|
* Tic Tac Toe
|
|
* @author Hanin Aljalab
|
|
*/
|
|
|
|
|
|
import java.util.Scanner;
|
|
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
|
|
//create a scanner
|
|
Scanner scanner = new Scanner(System.in);
|
|
|
|
// Create players
|
|
HumanPlayer humanPlayer = new HumanPlayer('O', scanner);
|
|
ComputerPlayer computerPlayer = new ComputerPlayer('X');
|
|
|
|
// Create game
|
|
Game game = new Game(humanPlayer, computerPlayer);
|
|
|
|
// Play the game
|
|
game.playGame();
|
|
}
|
|
}
|