#include "randalpaca.h"
#include "randPack.h"
#include "alpaca.h"
#include <sstream>
static int packNum = 0;
randPack::FracasPack::FracasPack()
{
std::ostringstream os;
os << "Random Pack " << packNum++;
packName=os.str();
for(int i=0; i<6; i++) {
os.str("");
os << "Randal #" << packNum-1 << "-" << i;
load(new Randalpaca(os.str(), this));
}
}
std::string
randPack::FracasPack::name()
{
return packName;
}