| 1462 | } |
| 1463 | |
| 1464 | void DemoWriteAttachObjRad(object *parent, char parent_ap, object *child, float rad) { |
| 1465 | cf_WriteByte(Demo_cfp, DT_ATTACH); |
| 1466 | cf_WriteShort(Demo_cfp, OBJNUM(parent)); |
| 1467 | cf_WriteByte(Demo_cfp, parent_ap); |
| 1468 | cf_WriteShort(Demo_cfp, OBJNUM(child)); |
| 1469 | cf_WriteFloat(Demo_cfp, rad); |
| 1470 | } |
| 1471 | |
| 1472 | void DemoReadAttachObjRad(void) { |
| 1473 | int16_t old_objnum; |
no test coverage detected