Beispiel #1
0
int		Map::checkNb(ResType res, int x, int y)
{
  Spot		*spot;
  int		nb;

  spot = getSpot(x, y);
  nb = spot->howMany(res);
  return (nb);
}