blob: 911763a85ddccead38dc98104a64f0e13c5548d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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() {
}
}
|