#include "gridhunt.h"

/* This file is include by gridmain.cc and contains the
 * function for team 2. The name of the function is 'hunt2'.
 * The Playerobject for this team is named 'team2'.
 */

Player team2("T2");

void hunt2()
{
  team2.move(dice(8));
  team2.move(dice(8));
}
