Source: AppSnake.js

/*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$)); 
W. Kowarschick © 2013 (CC BY-NC-SA 3.0: http://creativecommons.org/licenses/by-nc-sa/3.0/)
Documentation generated by JSDoc 3.3.0-dev on Thu Nov 14 2013 09:46:13 GMT+0100 (MEZ) using the DocStrap template.