// Table represents and manages the actual game. It accepts inputs from the server and tries to queries the server when the player makes a move.
function Table(el, soc) {
this.root = el;
this.soc = soc;
}
Table.prototype = {
handleClose: function() {
},
reset: function() {
}
}