/*jslint plusplus: true, white: true, indent: 2, maxlen: 90 */
/**
* @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/).
*/
(function($wk$)
{ "use strict";
// Set $wk$.game.snake = {}, if that has not already be done.
$wk$.pkg("$wk$.game.snake");
////////////////////////////////////////////////////////////////////////////////
// Class "AppSnake"
////////////////////////////////////////////////////////////////////////////////
//------------------------------------------------------------------------------
// Constructor
//------------------------------------------------------------------------------
/**
* @class
* @name $wk$.game.snake.AppSnake
* @this $wk$.game.snake.AppSnake
*/
function AppSnake()
{
}
//------------------------------------------------------------------------------
// End of Constructor
//------------------------------------------------------------------------------
AppSnake.prototype =
{ //----------------------------------------------------------------------------
// Methods (Data)
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Methods (Logic)
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Methods (View)
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// End of Methods
//----------------------------------------------------------------------------
};
$wk$.game.snake.AppSnake = AppSnake;
////////////////////////////////////////////////////////////////////////////////
// End of Class "AppSnake"
////////////////////////////////////////////////////////////////////////////////
}(this.$wk$));