Changeset 708 for code/branches/FICN/src/orxonox/objects/BillboardSet.h
- Timestamp:
- Dec 28, 2007, 10:30:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/BillboardSet.h
r673 r708 2 2 #define _BillboardSet_H__ 3 3 4 #include < string>4 #include <OgreBillboardSet.h> 5 5 6 #include "OgreBillboardSet.h" 6 #include "../OrxonoxPrereqs.h" 7 8 #include "misc/String.h" 9 #include "../core/CoreIncludes.h" 10 #include "misc/ColourValue.h" 11 #include "misc/Vector3.h" 7 12 8 13 namespace orxonox … … 13 18 BillboardSet(); 14 19 ~BillboardSet(); 15 void setBillboardSet(const std::string& file, const Ogre::ColourValue& colour = Ogre::ColourValue(1.0, 1.0, 1.0), int count = 1, const Ogre::Vector3& position = Ogre::Vector3::ZERO);20 void setBillboardSet(const String& file, const ColourValue& colour = ColourValue(1.0, 1.0, 1.0), int count = 1, const Vector3& position = Vector3::ZERO); 16 21 17 22 inline Ogre::BillboardSet* getBillboardSet() 18 23 { return this->billboardSet_; } 19 24 20 inline const std::string& getName() const25 inline const String& getName() const 21 26 { return this->billboardSet_->getName(); } 22 27
Note: See TracChangeset
for help on using the changeset viewer.