summaryrefslogtreecommitdiffstats
path: root/cells1/cell.js
diff options
context:
space:
mode:
Diffstat (limited to 'cells1/cell.js')
-rw-r--r--cells1/cell.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/cells1/cell.js b/cells1/cell.js
new file mode 100644
index 0000000..7762f95
--- /dev/null
+++ b/cells1/cell.js
@@ -0,0 +1,12 @@
+( function() {
+
+function Cell( props ) {
+ this.width = props.width;
+ this.height = props.height;
+ this.x = props.x;
+ this.index = props.index;
+}
+
+window.Cell = Cell;
+
+})();