Implemented EnemyFactory, still empty

This commit is contained in:
Kayne Ruse
2014-05-18 03:45:36 +10:00
parent f7df4fba6c
commit bb6e248583
5 changed files with 62 additions and 11 deletions
+3 -3
View File
@@ -22,13 +22,13 @@
#include "enemy_factory_generic.hpp"
EnemyFactoryGeneric::EnemyFactoryGeneric() : EnemyFactoryInterface() {
//
//EMPTY
}
EnemyFactoryGeneric::~EnemyFactoryGeneric() noexcept {
//
//EMPTY
}
void EnemyFactoryGeneric::Generate(std::list<EnemyData>* container) {
//TODO: fill out
//TODO: fill this out
}