#include "gridhunt.h"

/* This file is include by gridmain.cc and contains the
 * function for team 1. The name of the function is 'hunt1'.
 * The Playerobject for this team is named 'team1'.
 */

Player team1("T1");

void hunt1()
{
  team1.move(dice(8));
  team1.move(dice(8));
}
