ultimate_tictactoe/game_manager.js

11 lines
215 B
JavaScript
Raw Normal View History

2019-03-06 12:11:43 +01:00
class GameManager
{
constructor(grid)
{
this.grid = grid;
this.dummy_player = new Player("test_player", "rgb(0,128,0)");
this.grid.player_change_listener(this.dummy_player);
}
}