// コンテキストクラス (グローバル変数集合)

function Context()
{
    this.player1 = new Player();
    this.player2 = new Player();
    this.maxTurn = 10;
}
