eqemu

view src/material.h @ 3:f9274bebe55e

adding 3d graphics stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 17 Jul 2014 02:35:19 +0300
parents
children 9b5bb05ae53a
line source
1 #ifndef MATERIAL_H_
2 #define MATERIAL_H_
4 #include "vmath.h"
6 class Material {
7 public:
8 Vector3 ambient;
9 Vector3 diffuse;
10 Vector3 specular;
11 float shininess;
12 float alpha;
14 Material();
16 void setup() const;
17 };
19 #endif // MATERIAL_H_