add comment to SnesInput

This commit is contained in:
Colin McMillen 2019-09-25 16:17:44 -04:00
parent 02c1907d26
commit 3dbf2d96c6

View File

@ -12,6 +12,9 @@ function bound(low, x, high) {
return Math.max(low, Math.min(x, high));
}
// Representation of the state of the buttons on an SNES controller. (This may
// be the result of keyboard or gamepad input, which get mapped to the
// standard SNES buttons.)
class SnesInput {
constructor() {
this.up = false;