vrheights

view src/material.h @ 16:7f6d68d95c22

updated to new version of goatvr
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 30 Oct 2015 06:34:31 +0200
parents
children
line source
1 #ifndef MATERIAL_H_
2 #define MATERIAL_H_
4 #include <vmath/vmath.h>
6 class Material {
7 public:
8 Vector3 diffuse, specular;
9 float shininess;
10 float alpha;
12 unsigned int tex;
14 Material();
16 void setup() const;
17 };
19 #endif // MATERIAL_H_