dungeon_crawler

diff prototype/src/material.h @ 21:0588f8a1a351

converting LIGHT meshes to lights
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 21 Aug 2012 06:33:36 +0300
parents e5567ddbf2ef
children aa9e28670ae2
line diff
     1.1 --- a/prototype/src/material.h	Tue Aug 21 04:57:33 2012 +0300
     1.2 +++ b/prototype/src/material.h	Tue Aug 21 06:33:36 2012 +0300
     1.3 @@ -13,12 +13,11 @@
     1.4  };
     1.5  
     1.6  class Material {
     1.7 -private:
     1.8 +public:
     1.9  	Color kd, ks;
    1.10  	double shin;
    1.11  	unsigned int tex[NUM_TEXTURE_TYPES];
    1.12  
    1.13 -public:
    1.14  	Material();
    1.15  
    1.16  	void load(const aiMaterial *assmat, TextureSet *texset = 0);