1
0
mirror of https://github.com/danog/2048.git synced 2024-12-14 18:37:00 +01:00
2048/js/html_actuator.js
2014-03-08 13:10:54 +01:00

14 lines
286 B
JavaScript

function HTMLActuator() {
}
HTMLActuator.prototype.actuate = function (grid) {
// Temporary debug visualizer
grid.cells.forEach(function (row) {
var mapped = row.map(function (tile) {
return tile ? tile.value : " ";
}).join(" | ");
console.log(mapped);
});
};