summaryrefslogtreecommitdiffstats
path: root/cells1/cell.js
blob: 7762f95e23adfd924fe327b7c6bcb3f4c4f218e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
( function() {

function Cell( props ) {
  this.width = props.width;
  this.height = props.height;
  this.x = props.x;
  this.index = props.index;
}

window.Cell = Cell;

})();