#include "gridhunt.h"

/* This file is include by gridmain.cc and contains the
 * function for team 3. The name of the function is 'hunt3'.
 * The Playerobject for this team is named 'team3'.
 */

Player team3("T3");

void hunt3()
{
  team3.move(dice(8));
  team3.move(dice(8));
}
