MCPcopy
hub / github.com/gabrielecirulli/2048 / HTMLActuator

Function HTMLActuator

js/html_actuator.js:1–8  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1function HTMLActuator() {
2 this.tileContainer = document.querySelector(".tile-container");
3 this.scoreContainer = document.querySelector(".score-container");
4 this.bestContainer = document.querySelector(".best-container");
5 this.messageContainer = document.querySelector(".game-message");
6
7 this.score = 0;
8}
9
10HTMLActuator.prototype.actuate = function (grid, metadata) {
11 var self = this;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected