conworlds

view src/material.h @ 22:5f53272ff612

removed the vr wrapper and added an external dependency to libgoatvr
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 29 Aug 2014 07:44:26 +0300
parents
children
line source
1 #ifndef MATERIAL_H_
2 #define MATERIAL_H_
4 #include "vmath/vmath.h"
5 #include "texture.h"
7 enum {
8 TEX_DIFFUSE,
9 TEX_SPECULAR,
10 TEX_NORMAL,
11 TEX_MISC,
13 MAX_MTL_TEXTURES
14 };
16 class Material {
17 public:
18 Vector3 diffuse, specular;
19 float alpha;
20 float shininess;
22 Texture *tex[MAX_MTL_TEXTURES];
24 Material();
26 void setup(bool use_textures = true) const;
27 };
29 #endif // MATERIAL_H_