Changeset 7807 in orxonox.OLD for branches/atmospheric_engine/src/lib/graphics/render2D/image_plane.h
- Timestamp:
- May 24, 2006, 3:21:13 PM (19 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/render2D/image_plane.h
r7799 r7807 1 1 /*! 2 * @file billboard.h3 * Definition of a billboard2 * @file image_plane.h 3 * Definition of a image_plane 4 4 */ 5 5 6 #ifndef _ BILLBOARD_H7 #define _ BILLBOARD_H6 #ifndef _IMAGE_PLANE_H 7 #define _IMAGE_PLANE_H 8 8 9 9 … … 14 14 15 15 16 class Model;17 16 class Material; 18 17 class TiXmlElement; 19 18 20 19 //! A class that enables the 21 class Billboard: public Element2D20 class ImagePlane : public Element2D 22 21 { 23 22 24 23 public: 25 Billboard(const TiXmlElement* root = NULL);26 virtual ~ Billboard();24 ImagePlane(const TiXmlElement* root = NULL); 25 virtual ~ImagePlane(); 27 26 28 27 void init(); … … 38 37 39 38 private: 40 Material* material; //!< a material for the Billboard39 Material* material; //!< a material for the ImagePlane 41 40 float rotationSpeed; //!< Speed of the Rotation. 42 41 … … 45 44 }; 46 45 47 #endif /* _ BILLBOARD_H */46 #endif /* _IMAGE_PLANE_H */
Note: See TracChangeset
for help on using the changeset viewer.