pub unsafe extern "C" fn ecs_value_move(
world: *const ecs_world_t,
type_: ecs_entity_t,
dst: *mut c_void,
src: *mut c_void,
) -> c_intExpand description
Move value.
@param world The world. @param type The type of the value to move. @param dst Pointer to the storage to move to. @param src Pointer to the value to move. @return Zero if success, nonzero if failed.