diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-28 08:13:09 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-28 08:13:09 -0400 |
commit | c8b859da1c52205973ad853eec91bf5a7cb882bb (patch) | |
tree | 8f2e6c4667191ba63d418ea06f14122d28a551f8 /src/main.cpp | |
parent | 4391f9289b7368765b39c9654d6b0bdf2db8f36b (diff) |
Fixed entities
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0ba715f..dae4189 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -198,6 +198,7 @@ void logic(){ for(int i=0;i<=entity.size();i++){ if(entity[i]->alive&&entity[i]->type == 1){ entity[i]->wander(90, &entity[i]->vel); + std::cout<<"works"<<i<<std::endl; } } } |