| 134 | m_character = NULL; |
| 135 | } |
| 136 | void CPHActorCharacter::SetPhysicsRefObject(CPhysicsShellHolder* ref_object) |
| 137 | { |
| 138 | inherited::SetPhysicsRefObject(ref_object); |
| 139 | RESTRICTOR_I i = begin(m_restrictors), e = end(m_restrictors); |
| 140 | for (; e != i; ++i) |
| 141 | { |
| 142 | (*i)->SetPhysicsRefObject(ref_object); |
| 143 | } |
| 144 | } |
| 145 | void SPHCharacterRestrictor::SetPhysicsRefObject(CPhysicsShellHolder* ref_object) |
| 146 | { |
| 147 | if (m_character) |
no test coverage detected