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