From ad63a143594a5c42e6242b59f41e9ff43cc0691a Mon Sep 17 00:00:00 2001 From: CobaltXII Date: Sat, 5 Jan 2019 14:31:44 -0500 Subject: [PATCH] Worlds now have a list of burning fires --- src/inc/world.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/inc/world.hpp b/src/inc/world.hpp index 304c68f..4c5dad9 100644 --- a/src/inc/world.hpp +++ b/src/inc/world.hpp @@ -17,6 +17,10 @@ struct world std::vector growing_plants; + // A list of fires that are burning. + + std::vector burning_fires; + // Get the voxel at the specified coordinates. inline voxel get(unsigned int x, unsigned int y, unsigned int z)