mirror of
https://github.com/Aviortheking/Puissance4.git
synced 2025-04-22 10:52:15 +00:00
21 lines
392 B
TypeScript
21 lines
392 B
TypeScript
import './style.css'
|
|
|
|
import Game from './Game'
|
|
|
|
const table = document.querySelector('table')
|
|
|
|
if (!table) {
|
|
throw new Error('Table not found')
|
|
}
|
|
|
|
const game = new Game(table)
|
|
game.makeMove(0, 'red')
|
|
game.makeIATakeTurn()
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|
|
game.makeMove(0, 'red')
|