/*jslint plusplus: true, white: true, indent: 2, maxlen: 90 */
/*global $wk$, $app$*/
/**
* @module $wk$
* @author Wolfgang Kowarschick
* @copyright 2013, Wolfgang Kowarschick
* <br/>
* Redistribution and use in source and binary forms, with or without
* modification, are permitted under the terms of the
* Creative Commons License Attribution-NonCommercial-ShareAlike 3.0 Unported
* (CC BY-NC-SA 3.0: http://creativecommons.org/licenses/by-nc-sa/3.0/).
*/
$wk$($app$, "json/init.json", $wk$.WAIT_UNTIL_READY,
function($app$, p_init)
{ "use strict";
////////////////////////////////////////////////////////////////////////////////
// "AppSnake"
////////////////////////////////////////////////////////////////////////////////
var l_app = new $app$.game.snake.AppSnake(p_init);
l_app.startGame();
////////////////////////////////////////////////////////////////////////////////
// End of "AppSnake"
////////////////////////////////////////////////////////////////////////////////
});