diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-01-16 12:31:55 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-01-16 12:31:55 -0500 |
commit | 1eced16d75322832617a1b42ec94580a9713e8f0 (patch) | |
tree | 0a7e142644e78065250d9a16359c94aac1986aaf /src | |
parent | 4b21a0fa4e6a7e35b7d9a01bbc0a7080dd392996 (diff) | |
parent | f5039deffdf210f4765926dcaf6f8a3dfb591914 (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'src')
-rw-r--r-- | src/world.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp index 76da308..3ad877b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -1262,6 +1262,7 @@ void IndoorWorld::draw(Player *p){ * Draw all entities. */ + for(auto &part : particles) part->draw(); for(auto &e : entity) e->draw(); p->draw(); } |