dungeon_crawler

diff prototype/src/level.h @ 45:dfd3a413ef9e

particle system 1
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 12 Sep 2012 06:04:20 +0300
parents 38e16366efc2
children aa9e28670ae2
line diff
     1.1 --- a/prototype/src/level.h	Thu Aug 30 06:08:22 2012 +0300
     1.2 +++ b/prototype/src/level.h	Wed Sep 12 06:04:20 2012 +0300
     1.3 @@ -3,6 +3,7 @@
     1.4  
     1.5  #include <vector>
     1.6  #include "vmath/vmath.h"
     1.7 +#include "psys/psys.h"
     1.8  
     1.9  class GridCell;
    1.10  class Tile;
    1.11 @@ -43,6 +44,9 @@
    1.12  	// each grid-cell might contain multiple tiles.
    1.13  	std::vector<Tile*> tiles;
    1.14  
    1.15 +	// particle systems
    1.16 +	std::vector<struct psys_emitter*> psys;
    1.17 +
    1.18  public:
    1.19  	GridCell(Tile *tile = 0);
    1.20