UNPKG

soma.js

Version:

soma.js is a javascript framework created to build scalable and maintainable applications.

15 lines (9 loc) 240 B
(function(snake) { 'use strict'; snake.EndCommand = function(dispatcher) { this.execute = function() { // display game over screen or restart game dispatcher.dispatch('start'); }; }; })(window.snake = window.snake || {});