| 30 | CPHCharacter::~CPHCharacter(void) {} |
| 31 | |
| 32 | void CPHCharacter::FreezeContent() |
| 33 | { |
| 34 | dBodyDisable(m_body); |
| 35 | CPHObject::FreezeContent(); |
| 36 | } |
| 37 | void CPHCharacter::UnFreezeContent() |
| 38 | { |
| 39 | dBodyEnable(m_body); |
nothing calls this directly
no test coverage detected