| 48 | } |
| 49 | |
| 50 | void SubObjectsFromSprite::addCelDataRef(const CelDataRef& celdata) |
| 51 | { |
| 52 | ASSERT(celdata); |
| 53 | ASSERT(!getCelDataRef(celdata->id())); |
| 54 | m_celdatas.insert(std::make_pair(celdata->id(), celdata)); |
| 55 | } |
| 56 | |
| 57 | CelDataRef SubObjectsFromSprite::getCelDataRef(ObjectId celdataId) |
| 58 | { |
no test coverage detected