#include "gridhunt.h"

/* This file is include by gridmain.cc and contains the
 * function for team 4. The name of the function is 'hunt4'.
 * The Playerobject for this team is named 'team4'.
 */

Player team4("T4");

void hunt4()
{
  team4.move(dice(8));
  team4.move(dice(8));
}
