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