goat3d

view src/object.h @ 14:188c697b3b49

- added a document describing the goat3d file format chunk hierarchy - started an alternative XML-based file format - added the openctm library
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Sep 2013 04:47:05 +0300
parents 2918358f5e6d
children 1c601bf07b86
line source
1 #ifndef OBJECT_H_
2 #define OBJECT_H_
4 #include <string>
5 #include <vmath/vmath.h>
7 class Object {
8 public:
9 std::string name;
11 Vector3 pos;
12 Quaternion rot;
13 };
15 #endif // OBJECT_H_