Source: Game.js

/* vim:set filetype=javascript:*/
/*global Class */


/**
  @class A full game of chess. Contains the starting position
  including a full set of moves of type GameMove.
  @author mark.veltzer@gmail.com (Mark Veltzer)
*/
var Game = Class.create(/** @lends Game.prototype */{
  /**
    creates a new instance of this class.
    @return {Game} new instance of this class.
    @author mark.veltzer@gmail.com (Mark Veltzer)
  */
  initialize: function() {
    return;
  },
  /**
    toString method that allows you to get a nice printout for this type
    @return {string} string representation of this instance.
    @author mark.veltzer@gmail.com (Mark Veltzer)
  */
  toString: function() {
    return 'no toString for type Game';
  }
});