| 4545 | } |
| 4546 | |
| 4547 | void MovementObject::CollideWith(MovementObject* other) { |
| 4548 | ASArglist args; |
| 4549 | args.AddAddress(other); |
| 4550 | as_context->CallScriptFunction(as_funcs.handle_collisions_btc, &args); |
| 4551 | } |
| 4552 | |
| 4553 | void MovementObject::SetScriptParams(const ScriptParamMap& spm) { |
| 4554 | Object::SetScriptParams(spm); |
no test coverage detected