(container, x, y)
| 200 | this.changeState(container, this.machine == machine ? 0 : 1); |
| 201 | } |
| 202 | onMouseEntered(container, x, y) { |
| 203 | container.last.visible = !this.machine.broken; |
| 204 | super.onMouseEntered(container, x, y); |
| 205 | } |
| 206 | onMouseExited(container, x, y) { |
| 207 | container.last.visible = false; |
| 208 | super.onMouseExited(container, x, y); |
nothing calls this directly
no test coverage detected