Files
aliendefender/aliens.cpp
buull 3f8971b113 now this work stable
global restruct fuinish part 1 of 3
2010-02-07 16:18:29 +03:00

20 lines
227 B
C++

#include "aliens.h"
Aliens::Aliens(games *parent)
{
game = parent;
}
bool Aliens::AddAlien()
{
curAliens.push_back(new Alien(game,0.1));
return !curAliens.isEmpty();
}
void Aliens::clearAliens()
{
curAliens.clear();
}