dungeon_crawler

diff prototype/src/tile.h @ 2:1f61f2a02832

added mesh class
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 09 Aug 2012 06:20:27 +0300
parents 96de911d05d4
children 31e53fd79c2d
line diff
     1.1 --- a/prototype/src/tile.h	Thu Jun 28 06:05:50 2012 +0300
     1.2 +++ b/prototype/src/tile.h	Thu Aug 09 06:20:27 2012 +0300
     1.3 @@ -1,7 +1,13 @@
     1.4  #ifndef TILE_H_
     1.5  #define TILE_H_
     1.6  
     1.7 +#include <vector>
     1.8 +#include "mesh.h"
     1.9 +
    1.10  class Tile {
    1.11 +private:
    1.12 +	std::vector<Mesh*> meshes;
    1.13 +
    1.14  public:
    1.15  	bool load(const char *fname);
    1.16