| 394 | |
| 395 | |
| 396 | bool |
| 397 | ShadowSubdomain::addLoadPattern(LoadPattern *thePattern) |
| 398 | { |
| 399 | #ifdef _G3DEBUG |
| 400 | // do all the checking stuff |
| 401 | #endif |
| 402 | |
| 403 | msgData(0) = ShadowActorSubdomain_addLoadPattern; |
| 404 | msgData(1) = thePattern->getClassTag(); |
| 405 | msgData(2) = thePattern->getDbTag(); |
| 406 | this->sendID(msgData); |
| 407 | this->sendObject(*thePattern); |
| 408 | // this->Domain::domainChange(); |
| 409 | |
| 410 | theShadowLPs->addComponent(thePattern); |
| 411 | numLoadPatterns++; |
| 412 | |
| 413 | return true; |
| 414 | } |
| 415 | |
| 416 | |
| 417 |
no test coverage detected