00001 #ifndef GLOBEENTITY_H 00002 #define GLOBEENTITY_H 00003 00011 #include "Entity.h" 00012 00019 class GlobeEntity : public Entity { 00020 public: 00021 00026 void deserialize (XMLNode *from ); 00027 00028 private: 00029 Color reflectivity_; 00030 Color emission_; 00031 Color radiosity_; 00032 00033 void polygonize ( ); 00034 void addQuad(Vertex vertex[4]); 00035 }; 00036 00037 #endif // GLOBEENTITY_H
1.5.2