From 87ce9d1c162ac9606a9b4d817a5f3b486889a46f Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Thu, 27 Feb 2020 18:06:56 -0500 Subject: Initialize Client repo with predone work --- scripts/client/table.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 scripts/client/table.js (limited to 'scripts/client/table.js') diff --git a/scripts/client/table.js b/scripts/client/table.js new file mode 100644 index 0000000..911763a --- /dev/null +++ b/scripts/client/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 -- cgit v1.2.3