| 62 | } |
| 63 | |
| 64 | void MapObjectLayer::update( const Time& dt ) { |
| 65 | for ( ObjList::iterator it = mObjects.begin(); it != mObjects.end(); ++it ) { |
| 66 | ( *it )->update( dt ); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | Uint32 MapObjectLayer::getObjectCount() const { |
| 71 | return mObjects.size(); |