#include "gridhunt.h"

/* This file is include by gridmain.cc and contains the
 * function for team 5. The name of the function is 'hunt5'.
 * The Playerobject for this team is named 'team5'.
 */

Player team5("T5");

void hunt5()
{
  team5.move(dice(8));
  team5.move(dice(8));
}
