Worlds now have a list of burning fires

This commit is contained in:
CobaltXII
2019-01-05 14:31:44 -05:00
parent 19be25c23c
commit ad63a14359

View File

@@ -17,6 +17,10 @@ struct world
std::vector<growing_plant> growing_plants; std::vector<growing_plant> growing_plants;
// A list of fires that are burning.
std::vector<burning_fire> burning_fires;
// Get the voxel at the specified coordinates. // Get the voxel at the specified coordinates.
inline voxel get(unsigned int x, unsigned int y, unsigned int z) inline voxel get(unsigned int x, unsigned int y, unsigned int z)