| 265 | } |
| 266 | |
| 267 | void unspawned(ScriptWorld &sw, const UnitId *units, u32 num) |
| 268 | { |
| 269 | if (sw._disable_callbacks) |
| 270 | return; |
| 271 | |
| 272 | ArgType::Enum arg_types = ArgType::POINTER; |
| 273 | Arg args; |
| 274 | args.pointer_value = (void *)sw._world; |
| 275 | script_world::multicast_group(sw, "unspawned", units, num, &arg_types, &args, 1); |
| 276 | } |
| 277 | |
| 278 | } // namespace script_world |
| 279 |
no test coverage detected