diff options
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r-- | src/gameplay.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp index 1f4b3fe..c36b09c 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -82,6 +82,10 @@ void initEverything(void){ mob.push_back(new Mob(1)); entity.push_back(mob.back()); mob.back()->spawn(200,100); + + mob.push_back(new Mob(2)); + entity.push_back(mob.back()); + mob.back()->spawn(200,100); /* * Link all the entities that were just created to the initial world, and setup a test AI function. |