summaryrefslogtreecommitdiffstats
path: root/prevnext1/cell.js
blob: 7e071e02f298da6186db1aaa7e18cc6f51bf219b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
( function() {

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

  this.target = this.x + this.width * 0.5;
}

window.Cell = Cell;

})();