source: GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/src/BBCEntityClusterData.cpp @ 721

Revision 721, 329 bytes checked in by igarcia, 18 years ago (diff)
RevLine 
[699]1
2#include "BBCEntityClusterData.h"
3
4namespace BBC {
5
[721]6EntityClusterData::EntityClusterData(): references(0) // initialize references to 0
7{
[699]8}
9
[721]10EntityClusterData::~EntityClusterData()
11{
12
[699]13}
14
[721]15void EntityClusterData::setEntity(EntityPtr value)
[699]16{
17        mEntity = value;
18}
19
[721]20EntityPtr EntityClusterData::getEntity()
[699]21{
22        return mEntity;
23}
24
25}
Note: See TracBrowser for help on using the repository browser.