// seahunt.cpp

#include <iostream>

#include "game.h"

#ifdef RELEASE

int
main ( void )
{
  std::cout << "\nSeahunt\n" << std::endl;
  Seahunt::Game seahunt;
  seahunt.Play();
  return(0);
}

#endif
