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; })();