summaryrefslogtreecommitdiff
path: root/scripts/table.js
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2020-02-28 02:21:30 -0500
committerKyle Gunger <corechg@gmail.com>2020-02-28 02:21:30 -0500
commita4d0d1190b74cd1bfb596b8a02a2deacce3ad86c (patch)
treeb46f341f3e57102ee9e20d352cfc4f0dd5b48cad /scripts/table.js
parent87ce9d1c162ac9606a9b4d817a5f3b486889a46f (diff)
Fix mobile + Lobby omments
Diffstat (limited to 'scripts/table.js')
-rw-r--r--scripts/table.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/table.js b/scripts/table.js
new file mode 100644
index 0000000..911763a
--- /dev/null
+++ b/scripts/table.js
@@ -0,0 +1,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() {
+
+ }
+} \ No newline at end of file