/**
 *  This is the namespace in which SDE game code lives.  Code written
 *  specifically for a particular type of game should should hang off
 *  this namespace in it's own namespace (`SDE.spiele.duel` for instance).
 *  Generic code that could be used across games should hang off
 *  `SDE.spiele.utils`.
 *
 *  @module spiele
 */

/**
 *  SDE game namespace
 *  @class SDE.spiele
 *  @static
 */
/**
 *  SDE game common code namespace
 *  @class SDE.spiele.utils
 *  @static
 */
( function( ) {
    SDE.namespace( 'spiele.utils' );
}() );
