pub struct GodotApi { pub godot_color_new_rgba : unsafe extern "C" fn ( r_dest : * mut godot_color , r : godot_real , g : godot_real , b : godot_real , a : godot_real ) -> ( ) , pub godot_color_new_rgb : unsafe extern "C" fn ( r_dest : * mut godot_color , r : godot_real , g : godot_real , b : godot_real ) -> ( ) , pub godot_color_get_r : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_set_r : unsafe extern "C" fn ( self_ : * mut godot_color , r : godot_real ) -> ( ) , pub godot_color_get_g : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_set_g : unsafe extern "C" fn ( self_ : * mut godot_color , g : godot_real ) -> ( ) , pub godot_color_get_b : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_set_b : unsafe extern "C" fn ( self_ : * mut godot_color , b : godot_real ) -> ( ) , pub godot_color_get_a : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_set_a : unsafe extern "C" fn ( self_ : * mut godot_color , a : godot_real ) -> ( ) , pub godot_color_get_h : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_get_s : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_get_v : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_as_string : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_string , pub godot_color_to_rgba32 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_to_argb32 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_gray : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_real , pub godot_color_inverted : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_color , pub godot_color_contrasted : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_color , pub godot_color_linear_interpolate : unsafe extern "C" fn ( self_ : * const godot_color , b : * const godot_color , t : godot_real ) -> godot_color , pub godot_color_blend : unsafe extern "C" fn ( self_ : * const godot_color , over : * const godot_color ) -> godot_color , pub godot_color_to_html : unsafe extern "C" fn ( self_ : * const godot_color , with_alpha : godot_bool ) -> godot_string , pub godot_color_operator_equal : unsafe extern "C" fn ( self_ : * const godot_color , b : * const godot_color ) -> godot_bool , pub godot_color_operator_less : unsafe extern "C" fn ( self_ : * const godot_color , b : * const godot_color ) -> godot_bool , pub godot_vector2_new : unsafe extern "C" fn ( r_dest : * mut godot_vector2 , x : godot_real , y : godot_real ) -> ( ) , pub godot_vector2_as_string : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_string , pub godot_vector2_normalized : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_length : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_vector2_angle : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_vector2_length_squared : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_vector2_is_normalized : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_bool , pub godot_vector2_distance_to : unsafe extern "C" fn ( self_ : * const godot_vector2 , to : * const godot_vector2 ) -> godot_real , pub godot_vector2_distance_squared_to : unsafe extern "C" fn ( self_ : * const godot_vector2 , to : * const godot_vector2 ) -> godot_real , pub godot_vector2_angle_to : unsafe extern "C" fn ( self_ : * const godot_vector2 , to : * const godot_vector2 ) -> godot_real , pub godot_vector2_angle_to_point : unsafe extern "C" fn ( self_ : * const godot_vector2 , to : * const godot_vector2 ) -> godot_real , pub godot_vector2_linear_interpolate : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 , t : godot_real ) -> godot_vector2 , pub godot_vector2_cubic_interpolate : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 , pre_a : * const godot_vector2 , post_b : * const godot_vector2 , t : godot_real ) -> godot_vector2 , pub godot_vector2_rotated : unsafe extern "C" fn ( self_ : * const godot_vector2 , phi : godot_real ) -> godot_vector2 , pub godot_vector2_tangent : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_floor : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_snapped : unsafe extern "C" fn ( self_ : * const godot_vector2 , by : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_aspect : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_vector2_dot : unsafe extern "C" fn ( self_ : * const godot_vector2 , with : * const godot_vector2 ) -> godot_real , pub godot_vector2_slide : unsafe extern "C" fn ( self_ : * const godot_vector2 , n : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_bounce : unsafe extern "C" fn ( self_ : * const godot_vector2 , n : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_reflect : unsafe extern "C" fn ( self_ : * const godot_vector2 , n : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_abs : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_clamped : unsafe extern "C" fn ( self_ : * const godot_vector2 , length : godot_real ) -> godot_vector2 , pub godot_vector2_operator_add : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_operator_subtract : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_operator_multiply_vector : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_operator_multiply_scalar : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : godot_real ) -> godot_vector2 , pub godot_vector2_operator_divide_vector : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_operator_divide_scalar : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : godot_real ) -> godot_vector2 , pub godot_vector2_operator_equal : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_bool , pub godot_vector2_operator_less : unsafe extern "C" fn ( self_ : * const godot_vector2 , b : * const godot_vector2 ) -> godot_bool , pub godot_vector2_operator_neg : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_vector2 , pub godot_vector2_set_x : unsafe extern "C" fn ( self_ : * mut godot_vector2 , x : godot_real ) -> ( ) , pub godot_vector2_set_y : unsafe extern "C" fn ( self_ : * mut godot_vector2 , y : godot_real ) -> ( ) , pub godot_vector2_get_x : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_vector2_get_y : unsafe extern "C" fn ( self_ : * const godot_vector2 ) -> godot_real , pub godot_quat_new : unsafe extern "C" fn ( r_dest : * mut godot_quat , x : godot_real , y : godot_real , z : godot_real , w : godot_real ) -> ( ) , pub godot_quat_new_with_axis_angle : unsafe extern "C" fn ( r_dest : * mut godot_quat , axis : * const godot_vector3 , angle : godot_real ) -> ( ) , pub godot_quat_get_x : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_set_x : unsafe extern "C" fn ( self_ : * mut godot_quat , val : godot_real ) -> ( ) , pub godot_quat_get_y : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_set_y : unsafe extern "C" fn ( self_ : * mut godot_quat , val : godot_real ) -> ( ) , pub godot_quat_get_z : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_set_z : unsafe extern "C" fn ( self_ : * mut godot_quat , val : godot_real ) -> ( ) , pub godot_quat_get_w : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_set_w : unsafe extern "C" fn ( self_ : * mut godot_quat , val : godot_real ) -> ( ) , pub godot_quat_as_string : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_string , pub godot_quat_length : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_length_squared : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_real , pub godot_quat_normalized : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_quat , pub godot_quat_is_normalized : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_bool , pub godot_quat_inverse : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_quat , pub godot_quat_dot : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat ) -> godot_real , pub godot_quat_xform : unsafe extern "C" fn ( self_ : * const godot_quat , v : * const godot_vector3 ) -> godot_vector3 , pub godot_quat_slerp : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat , t : godot_real ) -> godot_quat , pub godot_quat_slerpni : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat , t : godot_real ) -> godot_quat , pub godot_quat_cubic_slerp : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat , pre_a : * const godot_quat , post_b : * const godot_quat , t : godot_real ) -> godot_quat , pub godot_quat_operator_multiply : unsafe extern "C" fn ( self_ : * const godot_quat , b : godot_real ) -> godot_quat , pub godot_quat_operator_add : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat ) -> godot_quat , pub godot_quat_operator_subtract : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat ) -> godot_quat , pub godot_quat_operator_divide : unsafe extern "C" fn ( self_ : * const godot_quat , b : godot_real ) -> godot_quat , pub godot_quat_operator_equal : unsafe extern "C" fn ( self_ : * const godot_quat , b : * const godot_quat ) -> godot_bool , pub godot_quat_operator_neg : unsafe extern "C" fn ( self_ : * const godot_quat ) -> godot_quat , pub godot_basis_new_with_rows : unsafe extern "C" fn ( r_dest : * mut godot_basis , x_axis : * const godot_vector3 , y_axis : * const godot_vector3 , z_axis : * const godot_vector3 ) -> ( ) , pub godot_basis_new_with_axis_and_angle : unsafe extern "C" fn ( r_dest : * mut godot_basis , axis : * const godot_vector3 , phi : godot_real ) -> ( ) , pub godot_basis_new_with_euler : unsafe extern "C" fn ( r_dest : * mut godot_basis , euler : * const godot_vector3 ) -> ( ) , pub godot_basis_as_string : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_string , pub godot_basis_inverse : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_basis , pub godot_basis_transposed : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_basis , pub godot_basis_orthonormalized : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_basis , pub godot_basis_determinant : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_real , pub godot_basis_rotated : unsafe extern "C" fn ( self_ : * const godot_basis , axis : * const godot_vector3 , phi : godot_real ) -> godot_basis , pub godot_basis_scaled : unsafe extern "C" fn ( self_ : * const godot_basis , scale : * const godot_vector3 ) -> godot_basis , pub godot_basis_get_scale : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_vector3 , pub godot_basis_get_euler : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_vector3 , pub godot_basis_tdotx : unsafe extern "C" fn ( self_ : * const godot_basis , with : * const godot_vector3 ) -> godot_real , pub godot_basis_tdoty : unsafe extern "C" fn ( self_ : * const godot_basis , with : * const godot_vector3 ) -> godot_real , pub godot_basis_tdotz : unsafe extern "C" fn ( self_ : * const godot_basis , with : * const godot_vector3 ) -> godot_real , pub godot_basis_xform : unsafe extern "C" fn ( self_ : * const godot_basis , v : * const godot_vector3 ) -> godot_vector3 , pub godot_basis_xform_inv : unsafe extern "C" fn ( self_ : * const godot_basis , v : * const godot_vector3 ) -> godot_vector3 , pub godot_basis_get_orthogonal_index : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_int , pub godot_basis_new : unsafe extern "C" fn ( r_dest : * mut godot_basis ) -> ( ) , pub godot_basis_new_with_euler_quat : unsafe extern "C" fn ( r_dest : * mut godot_basis , euler : * const godot_quat ) -> ( ) , pub godot_basis_get_elements : unsafe extern "C" fn ( self_ : * const godot_basis , elements : * mut godot_vector3 ) -> ( ) , pub godot_basis_get_axis : unsafe extern "C" fn ( self_ : * const godot_basis , axis : godot_int ) -> godot_vector3 , pub godot_basis_set_axis : unsafe extern "C" fn ( self_ : * mut godot_basis , axis : godot_int , value : * const godot_vector3 ) -> ( ) , pub godot_basis_get_row : unsafe extern "C" fn ( self_ : * const godot_basis , row : godot_int ) -> godot_vector3 , pub godot_basis_set_row : unsafe extern "C" fn ( self_ : * mut godot_basis , row : godot_int , value : * const godot_vector3 ) -> ( ) , pub godot_basis_operator_equal : unsafe extern "C" fn ( self_ : * const godot_basis , b : * const godot_basis ) -> godot_bool , pub godot_basis_operator_add : unsafe extern "C" fn ( self_ : * const godot_basis , b : * const godot_basis ) -> godot_basis , pub godot_basis_operator_subtract : unsafe extern "C" fn ( self_ : * const godot_basis , b : * const godot_basis ) -> godot_basis , pub godot_basis_operator_multiply_vector : unsafe extern "C" fn ( self_ : * const godot_basis , b : * const godot_basis ) -> godot_basis , pub godot_basis_operator_multiply_scalar : unsafe extern "C" fn ( self_ : * const godot_basis , b : godot_real ) -> godot_basis , pub godot_vector3_new : unsafe extern "C" fn ( r_dest : * mut godot_vector3 , x : godot_real , y : godot_real , z : godot_real ) -> ( ) , pub godot_vector3_as_string : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_string , pub godot_vector3_min_axis : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_int , pub godot_vector3_max_axis : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_int , pub godot_vector3_length : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_real , pub godot_vector3_length_squared : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_real , pub godot_vector3_is_normalized : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_bool , pub godot_vector3_normalized : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_inverse : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_snapped : unsafe extern "C" fn ( self_ : * const godot_vector3 , by : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_rotated : unsafe extern "C" fn ( self_ : * const godot_vector3 , axis : * const godot_vector3 , phi : godot_real ) -> godot_vector3 , pub godot_vector3_linear_interpolate : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 , t : godot_real ) -> godot_vector3 , pub godot_vector3_cubic_interpolate : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 , pre_a : * const godot_vector3 , post_b : * const godot_vector3 , t : godot_real ) -> godot_vector3 , pub godot_vector3_dot : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_real , pub godot_vector3_cross : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_outer : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_basis , pub godot_vector3_to_diagonal_matrix : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_basis , pub godot_vector3_abs : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_floor : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_ceil : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_distance_to : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_real , pub godot_vector3_distance_squared_to : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_real , pub godot_vector3_angle_to : unsafe extern "C" fn ( self_ : * const godot_vector3 , to : * const godot_vector3 ) -> godot_real , pub godot_vector3_slide : unsafe extern "C" fn ( self_ : * const godot_vector3 , n : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_bounce : unsafe extern "C" fn ( self_ : * const godot_vector3 , n : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_reflect : unsafe extern "C" fn ( self_ : * const godot_vector3 , n : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_operator_add : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_operator_subtract : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_operator_multiply_vector : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_operator_multiply_scalar : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : godot_real ) -> godot_vector3 , pub godot_vector3_operator_divide_vector : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_operator_divide_scalar : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : godot_real ) -> godot_vector3 , pub godot_vector3_operator_equal : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_bool , pub godot_vector3_operator_less : unsafe extern "C" fn ( self_ : * const godot_vector3 , b : * const godot_vector3 ) -> godot_bool , pub godot_vector3_operator_neg : unsafe extern "C" fn ( self_ : * const godot_vector3 ) -> godot_vector3 , pub godot_vector3_set_axis : unsafe extern "C" fn ( self_ : * mut godot_vector3 , axis : godot_vector3_axis , val : godot_real ) -> ( ) , pub godot_vector3_get_axis : unsafe extern "C" fn ( self_ : * const godot_vector3 , axis : godot_vector3_axis ) -> godot_real , pub godot_pool_byte_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_byte_array ) -> ( ) , pub godot_pool_byte_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_byte_array , src : * const godot_pool_byte_array ) -> ( ) , pub godot_pool_byte_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_byte_array , a : * const godot_array ) -> ( ) , pub godot_pool_byte_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , data : u8 ) -> ( ) , pub godot_pool_byte_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , array : * const godot_pool_byte_array ) -> ( ) , pub godot_pool_byte_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , idx : godot_int , data : u8 ) -> godot_error , pub godot_pool_byte_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array ) -> ( ) , pub godot_pool_byte_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , data : u8 ) -> ( ) , pub godot_pool_byte_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , idx : godot_int ) -> ( ) , pub godot_pool_byte_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , size : godot_int ) -> ( ) , pub godot_pool_byte_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_byte_array ) -> * mut godot_pool_byte_array_read_access , pub godot_pool_byte_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array ) -> * mut godot_pool_byte_array_write_access , pub godot_pool_byte_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array , idx : godot_int , data : u8 ) -> ( ) , pub godot_pool_byte_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_byte_array , idx : godot_int ) -> u8 , pub godot_pool_byte_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_byte_array ) -> godot_int , pub godot_pool_byte_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_byte_array ) -> ( ) , pub godot_pool_int_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_int_array ) -> ( ) , pub godot_pool_int_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_int_array , src : * const godot_pool_int_array ) -> ( ) , pub godot_pool_int_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_int_array , a : * const godot_array ) -> ( ) , pub godot_pool_int_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , data : godot_int ) -> ( ) , pub godot_pool_int_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , array : * const godot_pool_int_array ) -> ( ) , pub godot_pool_int_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , idx : godot_int , data : godot_int ) -> godot_error , pub godot_pool_int_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array ) -> ( ) , pub godot_pool_int_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , data : godot_int ) -> ( ) , pub godot_pool_int_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , idx : godot_int ) -> ( ) , pub godot_pool_int_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , size : godot_int ) -> ( ) , pub godot_pool_int_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_int_array ) -> * mut godot_pool_int_array_read_access , pub godot_pool_int_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array ) -> * mut godot_pool_int_array_write_access , pub godot_pool_int_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array , idx : godot_int , data : godot_int ) -> ( ) , pub godot_pool_int_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_int_array , idx : godot_int ) -> godot_int , pub godot_pool_int_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_int_array ) -> godot_int , pub godot_pool_int_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_int_array ) -> ( ) , pub godot_pool_real_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_real_array ) -> ( ) , pub godot_pool_real_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_real_array , src : * const godot_pool_real_array ) -> ( ) , pub godot_pool_real_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_real_array , a : * const godot_array ) -> ( ) , pub godot_pool_real_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , data : godot_real ) -> ( ) , pub godot_pool_real_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , array : * const godot_pool_real_array ) -> ( ) , pub godot_pool_real_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , idx : godot_int , data : godot_real ) -> godot_error , pub godot_pool_real_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array ) -> ( ) , pub godot_pool_real_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , data : godot_real ) -> ( ) , pub godot_pool_real_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , idx : godot_int ) -> ( ) , pub godot_pool_real_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , size : godot_int ) -> ( ) , pub godot_pool_real_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_real_array ) -> * mut godot_pool_real_array_read_access , pub godot_pool_real_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array ) -> * mut godot_pool_real_array_write_access , pub godot_pool_real_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array , idx : godot_int , data : godot_real ) -> ( ) , pub godot_pool_real_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_real_array , idx : godot_int ) -> godot_real , pub godot_pool_real_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_real_array ) -> godot_int , pub godot_pool_real_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_real_array ) -> ( ) , pub godot_pool_string_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_string_array ) -> ( ) , pub godot_pool_string_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_string_array , src : * const godot_pool_string_array ) -> ( ) , pub godot_pool_string_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_string_array , a : * const godot_array ) -> ( ) , pub godot_pool_string_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , data : * const godot_string ) -> ( ) , pub godot_pool_string_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , array : * const godot_pool_string_array ) -> ( ) , pub godot_pool_string_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , idx : godot_int , data : * const godot_string ) -> godot_error , pub godot_pool_string_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array ) -> ( ) , pub godot_pool_string_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , data : * const godot_string ) -> ( ) , pub godot_pool_string_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , idx : godot_int ) -> ( ) , pub godot_pool_string_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , size : godot_int ) -> ( ) , pub godot_pool_string_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_string_array ) -> * mut godot_pool_string_array_read_access , pub godot_pool_string_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array ) -> * mut godot_pool_string_array_write_access , pub godot_pool_string_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array , idx : godot_int , data : * const godot_string ) -> ( ) , pub godot_pool_string_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_string_array , idx : godot_int ) -> godot_string , pub godot_pool_string_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_string_array ) -> godot_int , pub godot_pool_string_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_string_array ) -> ( ) , pub godot_pool_vector2_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector2_array ) -> ( ) , pub godot_pool_vector2_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector2_array , src : * const godot_pool_vector2_array ) -> ( ) , pub godot_pool_vector2_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector2_array , a : * const godot_array ) -> ( ) , pub godot_pool_vector2_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , data : * const godot_vector2 ) -> ( ) , pub godot_pool_vector2_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , array : * const godot_pool_vector2_array ) -> ( ) , pub godot_pool_vector2_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , idx : godot_int , data : * const godot_vector2 ) -> godot_error , pub godot_pool_vector2_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array ) -> ( ) , pub godot_pool_vector2_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , data : * const godot_vector2 ) -> ( ) , pub godot_pool_vector2_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , idx : godot_int ) -> ( ) , pub godot_pool_vector2_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , size : godot_int ) -> ( ) , pub godot_pool_vector2_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_vector2_array ) -> * mut godot_pool_vector2_array_read_access , pub godot_pool_vector2_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array ) -> * mut godot_pool_vector2_array_write_access , pub godot_pool_vector2_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array , idx : godot_int , data : * const godot_vector2 ) -> ( ) , pub godot_pool_vector2_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_vector2_array , idx : godot_int ) -> godot_vector2 , pub godot_pool_vector2_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_vector2_array ) -> godot_int , pub godot_pool_vector2_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_vector2_array ) -> ( ) , pub godot_pool_vector3_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector3_array ) -> ( ) , pub godot_pool_vector3_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector3_array , src : * const godot_pool_vector3_array ) -> ( ) , pub godot_pool_vector3_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_vector3_array , a : * const godot_array ) -> ( ) , pub godot_pool_vector3_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , data : * const godot_vector3 ) -> ( ) , pub godot_pool_vector3_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , array : * const godot_pool_vector3_array ) -> ( ) , pub godot_pool_vector3_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , idx : godot_int , data : * const godot_vector3 ) -> godot_error , pub godot_pool_vector3_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array ) -> ( ) , pub godot_pool_vector3_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , data : * const godot_vector3 ) -> ( ) , pub godot_pool_vector3_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , idx : godot_int ) -> ( ) , pub godot_pool_vector3_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , size : godot_int ) -> ( ) , pub godot_pool_vector3_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_vector3_array ) -> * mut godot_pool_vector3_array_read_access , pub godot_pool_vector3_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array ) -> * mut godot_pool_vector3_array_write_access , pub godot_pool_vector3_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array , idx : godot_int , data : * const godot_vector3 ) -> ( ) , pub godot_pool_vector3_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_vector3_array , idx : godot_int ) -> godot_vector3 , pub godot_pool_vector3_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_vector3_array ) -> godot_int , pub godot_pool_vector3_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_vector3_array ) -> ( ) , pub godot_pool_color_array_new : unsafe extern "C" fn ( r_dest : * mut godot_pool_color_array ) -> ( ) , pub godot_pool_color_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_pool_color_array , src : * const godot_pool_color_array ) -> ( ) , pub godot_pool_color_array_new_with_array : unsafe extern "C" fn ( r_dest : * mut godot_pool_color_array , a : * const godot_array ) -> ( ) , pub godot_pool_color_array_append : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , data : * const godot_color ) -> ( ) , pub godot_pool_color_array_append_array : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , array : * const godot_pool_color_array ) -> ( ) , pub godot_pool_color_array_insert : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , idx : godot_int , data : * const godot_color ) -> godot_error , pub godot_pool_color_array_invert : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array ) -> ( ) , pub godot_pool_color_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , data : * const godot_color ) -> ( ) , pub godot_pool_color_array_remove : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , idx : godot_int ) -> ( ) , pub godot_pool_color_array_resize : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , size : godot_int ) -> ( ) , pub godot_pool_color_array_read : unsafe extern "C" fn ( self_ : * const godot_pool_color_array ) -> * mut godot_pool_color_array_read_access , pub godot_pool_color_array_write : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array ) -> * mut godot_pool_color_array_write_access , pub godot_pool_color_array_set : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array , idx : godot_int , data : * const godot_color ) -> ( ) , pub godot_pool_color_array_get : unsafe extern "C" fn ( self_ : * const godot_pool_color_array , idx : godot_int ) -> godot_color , pub godot_pool_color_array_size : unsafe extern "C" fn ( self_ : * const godot_pool_color_array ) -> godot_int , pub godot_pool_color_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_pool_color_array ) -> ( ) , pub godot_pool_byte_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_byte_array_read_access ) -> * mut godot_pool_byte_array_read_access , pub godot_pool_byte_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_byte_array_read_access ) -> * const u8 , pub godot_pool_byte_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_byte_array_read_access , other : * mut godot_pool_byte_array_read_access ) -> ( ) , pub godot_pool_byte_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_byte_array_read_access ) -> ( ) , pub godot_pool_int_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_int_array_read_access ) -> * mut godot_pool_int_array_read_access , pub godot_pool_int_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_int_array_read_access ) -> * const godot_int , pub godot_pool_int_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_int_array_read_access , other : * mut godot_pool_int_array_read_access ) -> ( ) , pub godot_pool_int_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_int_array_read_access ) -> ( ) , pub godot_pool_real_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_real_array_read_access ) -> * mut godot_pool_real_array_read_access , pub godot_pool_real_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_real_array_read_access ) -> * const godot_real , pub godot_pool_real_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_real_array_read_access , other : * mut godot_pool_real_array_read_access ) -> ( ) , pub godot_pool_real_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_real_array_read_access ) -> ( ) , pub godot_pool_string_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_string_array_read_access ) -> * mut godot_pool_string_array_read_access , pub godot_pool_string_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_string_array_read_access ) -> * const godot_string , pub godot_pool_string_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_string_array_read_access , other : * mut godot_pool_string_array_read_access ) -> ( ) , pub godot_pool_string_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_string_array_read_access ) -> ( ) , pub godot_pool_vector2_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_vector2_array_read_access ) -> * mut godot_pool_vector2_array_read_access , pub godot_pool_vector2_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_vector2_array_read_access ) -> * const godot_vector2 , pub godot_pool_vector2_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_vector2_array_read_access , other : * mut godot_pool_vector2_array_read_access ) -> ( ) , pub godot_pool_vector2_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_vector2_array_read_access ) -> ( ) , pub godot_pool_vector3_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_vector3_array_read_access ) -> * mut godot_pool_vector3_array_read_access , pub godot_pool_vector3_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_vector3_array_read_access ) -> * const godot_vector3 , pub godot_pool_vector3_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_vector3_array_read_access , other : * mut godot_pool_vector3_array_read_access ) -> ( ) , pub godot_pool_vector3_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_vector3_array_read_access ) -> ( ) , pub godot_pool_color_array_read_access_copy : unsafe extern "C" fn ( read : * const godot_pool_color_array_read_access ) -> * mut godot_pool_color_array_read_access , pub godot_pool_color_array_read_access_ptr : unsafe extern "C" fn ( read : * const godot_pool_color_array_read_access ) -> * const godot_color , pub godot_pool_color_array_read_access_operator_assign : unsafe extern "C" fn ( read : * mut godot_pool_color_array_read_access , other : * mut godot_pool_color_array_read_access ) -> ( ) , pub godot_pool_color_array_read_access_destroy : unsafe extern "C" fn ( read : * mut godot_pool_color_array_read_access ) -> ( ) , pub godot_pool_byte_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_byte_array_write_access ) -> * mut godot_pool_byte_array_write_access , pub godot_pool_byte_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_byte_array_write_access ) -> * mut u8 , pub godot_pool_byte_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_byte_array_write_access , other : * mut godot_pool_byte_array_write_access ) -> ( ) , pub godot_pool_byte_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_byte_array_write_access ) -> ( ) , pub godot_pool_int_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_int_array_write_access ) -> * mut godot_pool_int_array_write_access , pub godot_pool_int_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_int_array_write_access ) -> * mut godot_int , pub godot_pool_int_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_int_array_write_access , other : * mut godot_pool_int_array_write_access ) -> ( ) , pub godot_pool_int_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_int_array_write_access ) -> ( ) , pub godot_pool_real_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_real_array_write_access ) -> * mut godot_pool_real_array_write_access , pub godot_pool_real_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_real_array_write_access ) -> * mut godot_real , pub godot_pool_real_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_real_array_write_access , other : * mut godot_pool_real_array_write_access ) -> ( ) , pub godot_pool_real_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_real_array_write_access ) -> ( ) , pub godot_pool_string_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_string_array_write_access ) -> * mut godot_pool_string_array_write_access , pub godot_pool_string_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_string_array_write_access ) -> * mut godot_string , pub godot_pool_string_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_string_array_write_access , other : * mut godot_pool_string_array_write_access ) -> ( ) , pub godot_pool_string_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_string_array_write_access ) -> ( ) , pub godot_pool_vector2_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_vector2_array_write_access ) -> * mut godot_pool_vector2_array_write_access , pub godot_pool_vector2_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_vector2_array_write_access ) -> * mut godot_vector2 , pub godot_pool_vector2_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_vector2_array_write_access , other : * mut godot_pool_vector2_array_write_access ) -> ( ) , pub godot_pool_vector2_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_vector2_array_write_access ) -> ( ) , pub godot_pool_vector3_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_vector3_array_write_access ) -> * mut godot_pool_vector3_array_write_access , pub godot_pool_vector3_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_vector3_array_write_access ) -> * mut godot_vector3 , pub godot_pool_vector3_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_vector3_array_write_access , other : * mut godot_pool_vector3_array_write_access ) -> ( ) , pub godot_pool_vector3_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_vector3_array_write_access ) -> ( ) , pub godot_pool_color_array_write_access_copy : unsafe extern "C" fn ( write : * const godot_pool_color_array_write_access ) -> * mut godot_pool_color_array_write_access , pub godot_pool_color_array_write_access_ptr : unsafe extern "C" fn ( write : * const godot_pool_color_array_write_access ) -> * mut godot_color , pub godot_pool_color_array_write_access_operator_assign : unsafe extern "C" fn ( write : * mut godot_pool_color_array_write_access , other : * mut godot_pool_color_array_write_access ) -> ( ) , pub godot_pool_color_array_write_access_destroy : unsafe extern "C" fn ( write : * mut godot_pool_color_array_write_access ) -> ( ) , pub godot_array_new : unsafe extern "C" fn ( r_dest : * mut godot_array ) -> ( ) , pub godot_array_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_array , src : * const godot_array ) -> ( ) , pub godot_array_new_pool_color_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pca : * const godot_pool_color_array ) -> ( ) , pub godot_array_new_pool_vector3_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pv3a : * const godot_pool_vector3_array ) -> ( ) , pub godot_array_new_pool_vector2_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pv2a : * const godot_pool_vector2_array ) -> ( ) , pub godot_array_new_pool_string_array : unsafe extern "C" fn ( r_dest : * mut godot_array , psa : * const godot_pool_string_array ) -> ( ) , pub godot_array_new_pool_real_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pra : * const godot_pool_real_array ) -> ( ) , pub godot_array_new_pool_int_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pia : * const godot_pool_int_array ) -> ( ) , pub godot_array_new_pool_byte_array : unsafe extern "C" fn ( r_dest : * mut godot_array , pba : * const godot_pool_byte_array ) -> ( ) , pub godot_array_set : unsafe extern "C" fn ( self_ : * mut godot_array , idx : godot_int , value : * const godot_variant ) -> ( ) , pub godot_array_get : unsafe extern "C" fn ( self_ : * const godot_array , idx : godot_int ) -> godot_variant , pub godot_array_operator_index : unsafe extern "C" fn ( self_ : * mut godot_array , idx : godot_int ) -> * mut godot_variant , pub godot_array_operator_index_const : unsafe extern "C" fn ( self_ : * const godot_array , idx : godot_int ) -> * const godot_variant , pub godot_array_append : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant ) -> ( ) , pub godot_array_clear : unsafe extern "C" fn ( self_ : * mut godot_array ) -> ( ) , pub godot_array_count : unsafe extern "C" fn ( self_ : * const godot_array , value : * const godot_variant ) -> godot_int , pub godot_array_empty : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_bool , pub godot_array_erase : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant ) -> ( ) , pub godot_array_front : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_variant , pub godot_array_back : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_variant , pub godot_array_find : unsafe extern "C" fn ( self_ : * const godot_array , what : * const godot_variant , from : godot_int ) -> godot_int , pub godot_array_find_last : unsafe extern "C" fn ( self_ : * const godot_array , what : * const godot_variant ) -> godot_int , pub godot_array_has : unsafe extern "C" fn ( self_ : * const godot_array , value : * const godot_variant ) -> godot_bool , pub godot_array_hash : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_int , pub godot_array_insert : unsafe extern "C" fn ( self_ : * mut godot_array , pos : godot_int , value : * const godot_variant ) -> ( ) , pub godot_array_invert : unsafe extern "C" fn ( self_ : * mut godot_array ) -> ( ) , pub godot_array_pop_back : unsafe extern "C" fn ( self_ : * mut godot_array ) -> godot_variant , pub godot_array_pop_front : unsafe extern "C" fn ( self_ : * mut godot_array ) -> godot_variant , pub godot_array_push_back : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant ) -> ( ) , pub godot_array_push_front : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant ) -> ( ) , pub godot_array_remove : unsafe extern "C" fn ( self_ : * mut godot_array , idx : godot_int ) -> ( ) , pub godot_array_resize : unsafe extern "C" fn ( self_ : * mut godot_array , size : godot_int ) -> ( ) , pub godot_array_rfind : unsafe extern "C" fn ( self_ : * const godot_array , what : * const godot_variant , from : godot_int ) -> godot_int , pub godot_array_size : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_int , pub godot_array_sort : unsafe extern "C" fn ( self_ : * mut godot_array ) -> ( ) , pub godot_array_sort_custom : unsafe extern "C" fn ( self_ : * mut godot_array , obj : * mut godot_object , func : * const godot_string ) -> ( ) , pub godot_array_bsearch : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant , before : godot_bool ) -> godot_int , pub godot_array_bsearch_custom : unsafe extern "C" fn ( self_ : * mut godot_array , value : * const godot_variant , obj : * mut godot_object , func : * const godot_string , before : godot_bool ) -> godot_int , pub godot_array_destroy : unsafe extern "C" fn ( self_ : * mut godot_array ) -> ( ) , pub godot_dictionary_new : unsafe extern "C" fn ( r_dest : * mut godot_dictionary ) -> ( ) , pub godot_dictionary_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_dictionary , src : * const godot_dictionary ) -> ( ) , pub godot_dictionary_destroy : unsafe extern "C" fn ( self_ : * mut godot_dictionary ) -> ( ) , pub godot_dictionary_size : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_int , pub godot_dictionary_empty : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_bool , pub godot_dictionary_clear : unsafe extern "C" fn ( self_ : * mut godot_dictionary ) -> ( ) , pub godot_dictionary_has : unsafe extern "C" fn ( self_ : * const godot_dictionary , key : * const godot_variant ) -> godot_bool , pub godot_dictionary_has_all : unsafe extern "C" fn ( self_ : * const godot_dictionary , keys : * const godot_array ) -> godot_bool , pub godot_dictionary_erase : unsafe extern "C" fn ( self_ : * mut godot_dictionary , key : * const godot_variant ) -> ( ) , pub godot_dictionary_hash : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_int , pub godot_dictionary_keys : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_array , pub godot_dictionary_values : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_array , pub godot_dictionary_get : unsafe extern "C" fn ( self_ : * const godot_dictionary , key : * const godot_variant ) -> godot_variant , pub godot_dictionary_set : unsafe extern "C" fn ( self_ : * mut godot_dictionary , key : * const godot_variant , value : * const godot_variant ) -> ( ) , pub godot_dictionary_operator_index : unsafe extern "C" fn ( self_ : * mut godot_dictionary , key : * const godot_variant ) -> * mut godot_variant , pub godot_dictionary_operator_index_const : unsafe extern "C" fn ( self_ : * const godot_dictionary , key : * const godot_variant ) -> * const godot_variant , pub godot_dictionary_next : unsafe extern "C" fn ( self_ : * const godot_dictionary , key : * const godot_variant ) -> * mut godot_variant , pub godot_dictionary_operator_equal : unsafe extern "C" fn ( self_ : * const godot_dictionary , b : * const godot_dictionary ) -> godot_bool , pub godot_dictionary_to_json : unsafe extern "C" fn ( self_ : * const godot_dictionary ) -> godot_string , pub godot_node_path_new : unsafe extern "C" fn ( r_dest : * mut godot_node_path , from : * const godot_string ) -> ( ) , pub godot_node_path_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_node_path , src : * const godot_node_path ) -> ( ) , pub godot_node_path_destroy : unsafe extern "C" fn ( self_ : * mut godot_node_path ) -> ( ) , pub godot_node_path_as_string : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_string , pub godot_node_path_is_absolute : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_bool , pub godot_node_path_get_name_count : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_int , pub godot_node_path_get_name : unsafe extern "C" fn ( self_ : * const godot_node_path , idx : godot_int ) -> godot_string , pub godot_node_path_get_subname_count : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_int , pub godot_node_path_get_subname : unsafe extern "C" fn ( self_ : * const godot_node_path , idx : godot_int ) -> godot_string , pub godot_node_path_get_concatenated_subnames : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_string , pub godot_node_path_is_empty : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_bool , pub godot_node_path_operator_equal : unsafe extern "C" fn ( self_ : * const godot_node_path , b : * const godot_node_path ) -> godot_bool , pub godot_plane_new_with_reals : unsafe extern "C" fn ( r_dest : * mut godot_plane , a : godot_real , b : godot_real , c : godot_real , d : godot_real ) -> ( ) , pub godot_plane_new_with_vectors : unsafe extern "C" fn ( r_dest : * mut godot_plane , v1 : * const godot_vector3 , v2 : * const godot_vector3 , v3 : * const godot_vector3 ) -> ( ) , pub godot_plane_new_with_normal : unsafe extern "C" fn ( r_dest : * mut godot_plane , normal : * const godot_vector3 , d : godot_real ) -> ( ) , pub godot_plane_as_string : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_string , pub godot_plane_normalized : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_plane , pub godot_plane_center : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_vector3 , pub godot_plane_get_any_point : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_vector3 , pub godot_plane_is_point_over : unsafe extern "C" fn ( self_ : * const godot_plane , point : * const godot_vector3 ) -> godot_bool , pub godot_plane_distance_to : unsafe extern "C" fn ( self_ : * const godot_plane , point : * const godot_vector3 ) -> godot_real , pub godot_plane_has_point : unsafe extern "C" fn ( self_ : * const godot_plane , point : * const godot_vector3 , epsilon : godot_real ) -> godot_bool , pub godot_plane_project : unsafe extern "C" fn ( self_ : * const godot_plane , point : * const godot_vector3 ) -> godot_vector3 , pub godot_plane_intersect_3 : unsafe extern "C" fn ( self_ : * const godot_plane , r_dest : * mut godot_vector3 , b : * const godot_plane , c : * const godot_plane ) -> godot_bool , pub godot_plane_intersects_ray : unsafe extern "C" fn ( self_ : * const godot_plane , r_dest : * mut godot_vector3 , from : * const godot_vector3 , dir : * const godot_vector3 ) -> godot_bool , pub godot_plane_intersects_segment : unsafe extern "C" fn ( self_ : * const godot_plane , r_dest : * mut godot_vector3 , begin : * const godot_vector3 , end : * const godot_vector3 ) -> godot_bool , pub godot_plane_operator_neg : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_plane , pub godot_plane_operator_equal : unsafe extern "C" fn ( self_ : * const godot_plane , b : * const godot_plane ) -> godot_bool , pub godot_plane_set_normal : unsafe extern "C" fn ( self_ : * mut godot_plane , normal : * const godot_vector3 ) -> ( ) , pub godot_plane_get_normal : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_vector3 , pub godot_plane_get_d : unsafe extern "C" fn ( self_ : * const godot_plane ) -> godot_real , pub godot_plane_set_d : unsafe extern "C" fn ( self_ : * mut godot_plane , d : godot_real ) -> ( ) , pub godot_rect2_new_with_position_and_size : unsafe extern "C" fn ( r_dest : * mut godot_rect2 , pos : * const godot_vector2 , size : * const godot_vector2 ) -> ( ) , pub godot_rect2_new : unsafe extern "C" fn ( r_dest : * mut godot_rect2 , x : godot_real , y : godot_real , width : godot_real , height : godot_real ) -> ( ) , pub godot_rect2_as_string : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_string , pub godot_rect2_get_area : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_real , pub godot_rect2_intersects : unsafe extern "C" fn ( self_ : * const godot_rect2 , b : * const godot_rect2 ) -> godot_bool , pub godot_rect2_encloses : unsafe extern "C" fn ( self_ : * const godot_rect2 , b : * const godot_rect2 ) -> godot_bool , pub godot_rect2_has_no_area : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_bool , pub godot_rect2_clip : unsafe extern "C" fn ( self_ : * const godot_rect2 , b : * const godot_rect2 ) -> godot_rect2 , pub godot_rect2_merge : unsafe extern "C" fn ( self_ : * const godot_rect2 , b : * const godot_rect2 ) -> godot_rect2 , pub godot_rect2_has_point : unsafe extern "C" fn ( self_ : * const godot_rect2 , point : * const godot_vector2 ) -> godot_bool , pub godot_rect2_grow : unsafe extern "C" fn ( self_ : * const godot_rect2 , by : godot_real ) -> godot_rect2 , pub godot_rect2_expand : unsafe extern "C" fn ( self_ : * const godot_rect2 , to : * const godot_vector2 ) -> godot_rect2 , pub godot_rect2_operator_equal : unsafe extern "C" fn ( self_ : * const godot_rect2 , b : * const godot_rect2 ) -> godot_bool , pub godot_rect2_get_position : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_vector2 , pub godot_rect2_get_size : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_vector2 , pub godot_rect2_set_position : unsafe extern "C" fn ( self_ : * mut godot_rect2 , pos : * const godot_vector2 ) -> ( ) , pub godot_rect2_set_size : unsafe extern "C" fn ( self_ : * mut godot_rect2 , size : * const godot_vector2 ) -> ( ) , pub godot_aabb_new : unsafe extern "C" fn ( r_dest : * mut godot_aabb , pos : * const godot_vector3 , size : * const godot_vector3 ) -> ( ) , pub godot_aabb_get_position : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_vector3 , pub godot_aabb_set_position : unsafe extern "C" fn ( self_ : * const godot_aabb , v : * const godot_vector3 ) -> ( ) , pub godot_aabb_get_size : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_vector3 , pub godot_aabb_set_size : unsafe extern "C" fn ( self_ : * const godot_aabb , v : * const godot_vector3 ) -> ( ) , pub godot_aabb_as_string : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_string , pub godot_aabb_get_area : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_real , pub godot_aabb_has_no_area : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_bool , pub godot_aabb_has_no_surface : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_bool , pub godot_aabb_intersects : unsafe extern "C" fn ( self_ : * const godot_aabb , with : * const godot_aabb ) -> godot_bool , pub godot_aabb_encloses : unsafe extern "C" fn ( self_ : * const godot_aabb , with : * const godot_aabb ) -> godot_bool , pub godot_aabb_merge : unsafe extern "C" fn ( self_ : * const godot_aabb , with : * const godot_aabb ) -> godot_aabb , pub godot_aabb_intersection : unsafe extern "C" fn ( self_ : * const godot_aabb , with : * const godot_aabb ) -> godot_aabb , pub godot_aabb_intersects_plane : unsafe extern "C" fn ( self_ : * const godot_aabb , plane : * const godot_plane ) -> godot_bool , pub godot_aabb_intersects_segment : unsafe extern "C" fn ( self_ : * const godot_aabb , from : * const godot_vector3 , to : * const godot_vector3 ) -> godot_bool , pub godot_aabb_has_point : unsafe extern "C" fn ( self_ : * const godot_aabb , point : * const godot_vector3 ) -> godot_bool , pub godot_aabb_get_support : unsafe extern "C" fn ( self_ : * const godot_aabb , dir : * const godot_vector3 ) -> godot_vector3 , pub godot_aabb_get_longest_axis : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_vector3 , pub godot_aabb_get_longest_axis_index : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_int , pub godot_aabb_get_longest_axis_size : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_real , pub godot_aabb_get_shortest_axis : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_vector3 , pub godot_aabb_get_shortest_axis_index : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_int , pub godot_aabb_get_shortest_axis_size : unsafe extern "C" fn ( self_ : * const godot_aabb ) -> godot_real , pub godot_aabb_expand : unsafe extern "C" fn ( self_ : * const godot_aabb , to_point : * const godot_vector3 ) -> godot_aabb , pub godot_aabb_grow : unsafe extern "C" fn ( self_ : * const godot_aabb , by : godot_real ) -> godot_aabb , pub godot_aabb_get_endpoint : unsafe extern "C" fn ( self_ : * const godot_aabb , idx : godot_int ) -> godot_vector3 , pub godot_aabb_operator_equal : unsafe extern "C" fn ( self_ : * const godot_aabb , b : * const godot_aabb ) -> godot_bool , pub godot_rid_new : unsafe extern "C" fn ( r_dest : * mut godot_rid ) -> ( ) , pub godot_rid_get_id : unsafe extern "C" fn ( self_ : * const godot_rid ) -> godot_int , pub godot_rid_new_with_resource : unsafe extern "C" fn ( r_dest : * mut godot_rid , from : * const godot_object ) -> ( ) , pub godot_rid_operator_equal : unsafe extern "C" fn ( self_ : * const godot_rid , b : * const godot_rid ) -> godot_bool , pub godot_rid_operator_less : unsafe extern "C" fn ( self_ : * const godot_rid , b : * const godot_rid ) -> godot_bool , pub godot_transform_new_with_axis_origin : unsafe extern "C" fn ( r_dest : * mut godot_transform , x_axis : * const godot_vector3 , y_axis : * const godot_vector3 , z_axis : * const godot_vector3 , origin : * const godot_vector3 ) -> ( ) , pub godot_transform_new : unsafe extern "C" fn ( r_dest : * mut godot_transform , basis : * const godot_basis , origin : * const godot_vector3 ) -> ( ) , pub godot_transform_get_basis : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_basis , pub godot_transform_set_basis : unsafe extern "C" fn ( self_ : * mut godot_transform , v : * const godot_basis ) -> ( ) , pub godot_transform_get_origin : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_vector3 , pub godot_transform_set_origin : unsafe extern "C" fn ( self_ : * mut godot_transform , v : * const godot_vector3 ) -> ( ) , pub godot_transform_as_string : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_string , pub godot_transform_inverse : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_transform , pub godot_transform_affine_inverse : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_transform , pub godot_transform_orthonormalized : unsafe extern "C" fn ( self_ : * const godot_transform ) -> godot_transform , pub godot_transform_rotated : unsafe extern "C" fn ( self_ : * const godot_transform , axis : * const godot_vector3 , phi : godot_real ) -> godot_transform , pub godot_transform_scaled : unsafe extern "C" fn ( self_ : * const godot_transform , scale : * const godot_vector3 ) -> godot_transform , pub godot_transform_translated : unsafe extern "C" fn ( self_ : * const godot_transform , ofs : * const godot_vector3 ) -> godot_transform , pub godot_transform_looking_at : unsafe extern "C" fn ( self_ : * const godot_transform , target : * const godot_vector3 , up : * const godot_vector3 ) -> godot_transform , pub godot_transform_xform_plane : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_plane ) -> godot_plane , pub godot_transform_xform_inv_plane : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_plane ) -> godot_plane , pub godot_transform_new_identity : unsafe extern "C" fn ( r_dest : * mut godot_transform ) -> ( ) , pub godot_transform_operator_equal : unsafe extern "C" fn ( self_ : * const godot_transform , b : * const godot_transform ) -> godot_bool , pub godot_transform_operator_multiply : unsafe extern "C" fn ( self_ : * const godot_transform , b : * const godot_transform ) -> godot_transform , pub godot_transform_xform_vector3 : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_vector3 ) -> godot_vector3 , pub godot_transform_xform_inv_vector3 : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_vector3 ) -> godot_vector3 , pub godot_transform_xform_aabb : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_aabb ) -> godot_aabb , pub godot_transform_xform_inv_aabb : unsafe extern "C" fn ( self_ : * const godot_transform , v : * const godot_aabb ) -> godot_aabb , pub godot_transform2d_new : unsafe extern "C" fn ( r_dest : * mut godot_transform2d , rot : godot_real , pos : * const godot_vector2 ) -> ( ) , pub godot_transform2d_new_axis_origin : unsafe extern "C" fn ( r_dest : * mut godot_transform2d , x_axis : * const godot_vector2 , y_axis : * const godot_vector2 , origin : * const godot_vector2 ) -> ( ) , pub godot_transform2d_as_string : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_string , pub godot_transform2d_inverse : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_transform2d , pub godot_transform2d_affine_inverse : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_transform2d , pub godot_transform2d_get_rotation : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_real , pub godot_transform2d_get_origin : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_vector2 , pub godot_transform2d_get_scale : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_vector2 , pub godot_transform2d_orthonormalized : unsafe extern "C" fn ( self_ : * const godot_transform2d ) -> godot_transform2d , pub godot_transform2d_rotated : unsafe extern "C" fn ( self_ : * const godot_transform2d , phi : godot_real ) -> godot_transform2d , pub godot_transform2d_scaled : unsafe extern "C" fn ( self_ : * const godot_transform2d , scale : * const godot_vector2 ) -> godot_transform2d , pub godot_transform2d_translated : unsafe extern "C" fn ( self_ : * const godot_transform2d , offset : * const godot_vector2 ) -> godot_transform2d , pub godot_transform2d_xform_vector2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_vector2 ) -> godot_vector2 , pub godot_transform2d_xform_inv_vector2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_vector2 ) -> godot_vector2 , pub godot_transform2d_basis_xform_vector2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_vector2 ) -> godot_vector2 , pub godot_transform2d_basis_xform_inv_vector2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_vector2 ) -> godot_vector2 , pub godot_transform2d_interpolate_with : unsafe extern "C" fn ( self_ : * const godot_transform2d , m : * const godot_transform2d , c : godot_real ) -> godot_transform2d , pub godot_transform2d_operator_equal : unsafe extern "C" fn ( self_ : * const godot_transform2d , b : * const godot_transform2d ) -> godot_bool , pub godot_transform2d_operator_multiply : unsafe extern "C" fn ( self_ : * const godot_transform2d , b : * const godot_transform2d ) -> godot_transform2d , pub godot_transform2d_new_identity : unsafe extern "C" fn ( r_dest : * mut godot_transform2d ) -> ( ) , pub godot_transform2d_xform_rect2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_rect2 ) -> godot_rect2 , pub godot_transform2d_xform_inv_rect2 : unsafe extern "C" fn ( self_ : * const godot_transform2d , v : * const godot_rect2 ) -> godot_rect2 , pub godot_variant_get_type : unsafe extern "C" fn ( v : * const godot_variant ) -> godot_variant_type , pub godot_variant_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_variant , src : * const godot_variant ) -> ( ) , pub godot_variant_new_nil : unsafe extern "C" fn ( r_dest : * mut godot_variant ) -> ( ) , pub godot_variant_new_bool : unsafe extern "C" fn ( r_dest : * mut godot_variant , b : godot_bool ) -> ( ) , pub godot_variant_new_uint : unsafe extern "C" fn ( r_dest : * mut godot_variant , i : u64 ) -> ( ) , pub godot_variant_new_int : unsafe extern "C" fn ( r_dest : * mut godot_variant , i : i64 ) -> ( ) , pub godot_variant_new_real : unsafe extern "C" fn ( r_dest : * mut godot_variant , r : std :: os :: raw :: c_double ) -> ( ) , pub godot_variant_new_string : unsafe extern "C" fn ( r_dest : * mut godot_variant , s : * const godot_string ) -> ( ) , pub godot_variant_new_vector2 : unsafe extern "C" fn ( r_dest : * mut godot_variant , v2 : * const godot_vector2 ) -> ( ) , pub godot_variant_new_rect2 : unsafe extern "C" fn ( r_dest : * mut godot_variant , rect2 : * const godot_rect2 ) -> ( ) , pub godot_variant_new_vector3 : unsafe extern "C" fn ( r_dest : * mut godot_variant , v3 : * const godot_vector3 ) -> ( ) , pub godot_variant_new_transform2d : unsafe extern "C" fn ( r_dest : * mut godot_variant , t2d : * const godot_transform2d ) -> ( ) , pub godot_variant_new_plane : unsafe extern "C" fn ( r_dest : * mut godot_variant , plane : * const godot_plane ) -> ( ) , pub godot_variant_new_quat : unsafe extern "C" fn ( r_dest : * mut godot_variant , quat : * const godot_quat ) -> ( ) , pub godot_variant_new_aabb : unsafe extern "C" fn ( r_dest : * mut godot_variant , aabb : * const godot_aabb ) -> ( ) , pub godot_variant_new_basis : unsafe extern "C" fn ( r_dest : * mut godot_variant , basis : * const godot_basis ) -> ( ) , pub godot_variant_new_transform : unsafe extern "C" fn ( r_dest : * mut godot_variant , trans : * const godot_transform ) -> ( ) , pub godot_variant_new_color : unsafe extern "C" fn ( r_dest : * mut godot_variant , color : * const godot_color ) -> ( ) , pub godot_variant_new_node_path : unsafe extern "C" fn ( r_dest : * mut godot_variant , np : * const godot_node_path ) -> ( ) , pub godot_variant_new_rid : unsafe extern "C" fn ( r_dest : * mut godot_variant , rid : * const godot_rid ) -> ( ) , pub godot_variant_new_object : unsafe extern "C" fn ( r_dest : * mut godot_variant , obj : * const godot_object ) -> ( ) , pub godot_variant_new_dictionary : unsafe extern "C" fn ( r_dest : * mut godot_variant , dict : * const godot_dictionary ) -> ( ) , pub godot_variant_new_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , arr : * const godot_array ) -> ( ) , pub godot_variant_new_pool_byte_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pba : * const godot_pool_byte_array ) -> ( ) , pub godot_variant_new_pool_int_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pia : * const godot_pool_int_array ) -> ( ) , pub godot_variant_new_pool_real_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pra : * const godot_pool_real_array ) -> ( ) , pub godot_variant_new_pool_string_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , psa : * const godot_pool_string_array ) -> ( ) , pub godot_variant_new_pool_vector2_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pv2a : * const godot_pool_vector2_array ) -> ( ) , pub godot_variant_new_pool_vector3_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pv3a : * const godot_pool_vector3_array ) -> ( ) , pub godot_variant_new_pool_color_array : unsafe extern "C" fn ( r_dest : * mut godot_variant , pca : * const godot_pool_color_array ) -> ( ) , pub godot_variant_as_bool : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_bool , pub godot_variant_as_uint : unsafe extern "C" fn ( self_ : * const godot_variant ) -> u64 , pub godot_variant_as_int : unsafe extern "C" fn ( self_ : * const godot_variant ) -> i64 , pub godot_variant_as_real : unsafe extern "C" fn ( self_ : * const godot_variant ) -> std :: os :: raw :: c_double , pub godot_variant_as_string : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_string , pub godot_variant_as_vector2 : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_vector2 , pub godot_variant_as_rect2 : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_rect2 , pub godot_variant_as_vector3 : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_vector3 , pub godot_variant_as_transform2d : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_transform2d , pub godot_variant_as_plane : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_plane , pub godot_variant_as_quat : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_quat , pub godot_variant_as_aabb : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_aabb , pub godot_variant_as_basis : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_basis , pub godot_variant_as_transform : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_transform , pub godot_variant_as_color : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_color , pub godot_variant_as_node_path : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_node_path , pub godot_variant_as_rid : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_rid , pub godot_variant_as_object : unsafe extern "C" fn ( self_ : * const godot_variant ) -> * mut godot_object , pub godot_variant_as_dictionary : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_dictionary , pub godot_variant_as_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_array , pub godot_variant_as_pool_byte_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_byte_array , pub godot_variant_as_pool_int_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_int_array , pub godot_variant_as_pool_real_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_real_array , pub godot_variant_as_pool_string_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_string_array , pub godot_variant_as_pool_vector2_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_vector2_array , pub godot_variant_as_pool_vector3_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_vector3_array , pub godot_variant_as_pool_color_array : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_pool_color_array , pub godot_variant_call : unsafe extern "C" fn ( self_ : * mut godot_variant , method : * const godot_string , args : * mut * const godot_variant , argcount : godot_int , r_error : * mut godot_variant_call_error ) -> godot_variant , pub godot_variant_has_method : unsafe extern "C" fn ( self_ : * const godot_variant , method : * const godot_string ) -> godot_bool , pub godot_variant_operator_equal : unsafe extern "C" fn ( self_ : * const godot_variant , other : * const godot_variant ) -> godot_bool , pub godot_variant_operator_less : unsafe extern "C" fn ( self_ : * const godot_variant , other : * const godot_variant ) -> godot_bool , pub godot_variant_hash_compare : unsafe extern "C" fn ( self_ : * const godot_variant , other : * const godot_variant ) -> godot_bool , pub godot_variant_booleanize : unsafe extern "C" fn ( self_ : * const godot_variant ) -> godot_bool , pub godot_variant_destroy : unsafe extern "C" fn ( self_ : * mut godot_variant ) -> ( ) , pub godot_char_string_length : unsafe extern "C" fn ( cs : * const godot_char_string ) -> godot_int , pub godot_char_string_get_data : unsafe extern "C" fn ( cs : * const godot_char_string ) -> * const std :: os :: raw :: c_char , pub godot_char_string_destroy : unsafe extern "C" fn ( cs : * mut godot_char_string ) -> ( ) , pub godot_string_new : unsafe extern "C" fn ( r_dest : * mut godot_string ) -> ( ) , pub godot_string_new_copy : unsafe extern "C" fn ( r_dest : * mut godot_string , src : * const godot_string ) -> ( ) , pub godot_string_new_with_wide_string : unsafe extern "C" fn ( r_dest : * mut godot_string , contents : * const wchar_t , size : std :: os :: raw :: c_int ) -> ( ) , pub godot_string_operator_index : unsafe extern "C" fn ( self_ : * mut godot_string , idx : godot_int ) -> * const wchar_t , pub godot_string_operator_index_const : unsafe extern "C" fn ( self_ : * const godot_string , idx : godot_int ) -> wchar_t , pub godot_string_wide_str : unsafe extern "C" fn ( self_ : * const godot_string ) -> * const wchar_t , pub godot_string_operator_equal : unsafe extern "C" fn ( self_ : * const godot_string , b : * const godot_string ) -> godot_bool , pub godot_string_operator_less : unsafe extern "C" fn ( self_ : * const godot_string , b : * const godot_string ) -> godot_bool , pub godot_string_operator_plus : unsafe extern "C" fn ( self_ : * const godot_string , b : * const godot_string ) -> godot_string , pub godot_string_length : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_int , pub godot_string_casecmp_to : unsafe extern "C" fn ( self_ : * const godot_string , str : * const godot_string ) -> std :: os :: raw :: c_schar , pub godot_string_nocasecmp_to : unsafe extern "C" fn ( self_ : * const godot_string , str : * const godot_string ) -> std :: os :: raw :: c_schar , pub godot_string_naturalnocasecmp_to : unsafe extern "C" fn ( self_ : * const godot_string , str : * const godot_string ) -> std :: os :: raw :: c_schar , pub godot_string_begins_with : unsafe extern "C" fn ( self_ : * const godot_string , string : * const godot_string ) -> godot_bool , pub godot_string_begins_with_char_array : unsafe extern "C" fn ( self_ : * const godot_string , char_array : * const std :: os :: raw :: c_char ) -> godot_bool , pub godot_string_bigrams : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_array , pub godot_string_chr : unsafe extern "C" fn ( character : wchar_t ) -> godot_string , pub godot_string_ends_with : unsafe extern "C" fn ( self_ : * const godot_string , string : * const godot_string ) -> godot_bool , pub godot_string_find : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string ) -> godot_int , pub godot_string_find_from : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string , from : godot_int ) -> godot_int , pub godot_string_findmk : unsafe extern "C" fn ( self_ : * const godot_string , keys : * const godot_array ) -> godot_int , pub godot_string_findmk_from : unsafe extern "C" fn ( self_ : * const godot_string , keys : * const godot_array , from : godot_int ) -> godot_int , pub godot_string_findmk_from_in_place : unsafe extern "C" fn ( self_ : * const godot_string , keys : * const godot_array , from : godot_int , r_key : * mut godot_int ) -> godot_int , pub godot_string_findn : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string ) -> godot_int , pub godot_string_findn_from : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string , from : godot_int ) -> godot_int , pub godot_string_find_last : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string ) -> godot_int , pub godot_string_format : unsafe extern "C" fn ( self_ : * const godot_string , values : * const godot_variant ) -> godot_string , pub godot_string_format_with_custom_placeholder : unsafe extern "C" fn ( self_ : * const godot_string , values : * const godot_variant , placeholder : * const std :: os :: raw :: c_char ) -> godot_string , pub godot_string_hex_encode_buffer : unsafe extern "C" fn ( buffer : * const u8 , len : godot_int ) -> godot_string , pub godot_string_hex_to_int : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_int , pub godot_string_hex_to_int_without_prefix : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_int , pub godot_string_insert : unsafe extern "C" fn ( self_ : * const godot_string , at_pos : godot_int , string : godot_string ) -> godot_string , pub godot_string_is_numeric : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_subsequence_of : unsafe extern "C" fn ( self_ : * const godot_string , string : * const godot_string ) -> godot_bool , pub godot_string_is_subsequence_ofi : unsafe extern "C" fn ( self_ : * const godot_string , string : * const godot_string ) -> godot_bool , pub godot_string_lpad : unsafe extern "C" fn ( self_ : * const godot_string , min_length : godot_int ) -> godot_string , pub godot_string_lpad_with_custom_character : unsafe extern "C" fn ( self_ : * const godot_string , min_length : godot_int , character : * const godot_string ) -> godot_string , pub godot_string_match : unsafe extern "C" fn ( self_ : * const godot_string , wildcard : * const godot_string ) -> godot_bool , pub godot_string_matchn : unsafe extern "C" fn ( self_ : * const godot_string , wildcard : * const godot_string ) -> godot_bool , pub godot_string_md5 : unsafe extern "C" fn ( md5 : * const u8 ) -> godot_string , pub godot_string_num : unsafe extern "C" fn ( num : std :: os :: raw :: c_double ) -> godot_string , pub godot_string_num_int64 : unsafe extern "C" fn ( num : i64 , base : godot_int ) -> godot_string , pub godot_string_num_int64_capitalized : unsafe extern "C" fn ( num : i64 , base : godot_int , capitalize_hex : godot_bool ) -> godot_string , pub godot_string_num_real : unsafe extern "C" fn ( num : std :: os :: raw :: c_double ) -> godot_string , pub godot_string_num_scientific : unsafe extern "C" fn ( num : std :: os :: raw :: c_double ) -> godot_string , pub godot_string_num_with_decimals : unsafe extern "C" fn ( num : std :: os :: raw :: c_double , decimals : godot_int ) -> godot_string , pub godot_string_pad_decimals : unsafe extern "C" fn ( self_ : * const godot_string , digits : godot_int ) -> godot_string , pub godot_string_pad_zeros : unsafe extern "C" fn ( self_ : * const godot_string , digits : godot_int ) -> godot_string , pub godot_string_replace_first : unsafe extern "C" fn ( self_ : * const godot_string , key : godot_string , with : godot_string ) -> godot_string , pub godot_string_replace : unsafe extern "C" fn ( self_ : * const godot_string , key : godot_string , with : godot_string ) -> godot_string , pub godot_string_replacen : unsafe extern "C" fn ( self_ : * const godot_string , key : godot_string , with : godot_string ) -> godot_string , pub godot_string_rfind : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string ) -> godot_int , pub godot_string_rfindn : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string ) -> godot_int , pub godot_string_rfind_from : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string , from : godot_int ) -> godot_int , pub godot_string_rfindn_from : unsafe extern "C" fn ( self_ : * const godot_string , what : godot_string , from : godot_int ) -> godot_int , pub godot_string_rpad : unsafe extern "C" fn ( self_ : * const godot_string , min_length : godot_int ) -> godot_string , pub godot_string_rpad_with_custom_character : unsafe extern "C" fn ( self_ : * const godot_string , min_length : godot_int , character : * const godot_string ) -> godot_string , pub godot_string_similarity : unsafe extern "C" fn ( self_ : * const godot_string , string : * const godot_string ) -> godot_real , pub godot_string_sprintf : unsafe extern "C" fn ( self_ : * const godot_string , values : * const godot_array , error : * mut godot_bool ) -> godot_string , pub godot_string_substr : unsafe extern "C" fn ( self_ : * const godot_string , from : godot_int , chars : godot_int ) -> godot_string , pub godot_string_to_double : unsafe extern "C" fn ( self_ : * const godot_string ) -> std :: os :: raw :: c_double , pub godot_string_to_float : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_real , pub godot_string_to_int : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_int , pub godot_string_camelcase_to_underscore : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_camelcase_to_underscore_lowercased : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_capitalize : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_char_to_double : unsafe extern "C" fn ( what : * const std :: os :: raw :: c_char ) -> std :: os :: raw :: c_double , pub godot_string_char_to_int : unsafe extern "C" fn ( what : * const std :: os :: raw :: c_char ) -> godot_int , pub godot_string_wchar_to_int : unsafe extern "C" fn ( str : * const wchar_t ) -> i64 , pub godot_string_char_to_int_with_len : unsafe extern "C" fn ( what : * const std :: os :: raw :: c_char , len : godot_int ) -> godot_int , pub godot_string_char_to_int64_with_len : unsafe extern "C" fn ( str : * const wchar_t , len : std :: os :: raw :: c_int ) -> i64 , pub godot_string_hex_to_int64 : unsafe extern "C" fn ( self_ : * const godot_string ) -> i64 , pub godot_string_hex_to_int64_with_prefix : unsafe extern "C" fn ( self_ : * const godot_string ) -> i64 , pub godot_string_to_int64 : unsafe extern "C" fn ( self_ : * const godot_string ) -> i64 , pub godot_string_unicode_char_to_double : unsafe extern "C" fn ( str : * const wchar_t , r_end : * mut * const wchar_t ) -> std :: os :: raw :: c_double , pub godot_string_get_slice_count : unsafe extern "C" fn ( self_ : * const godot_string , splitter : godot_string ) -> godot_int , pub godot_string_get_slice : unsafe extern "C" fn ( self_ : * const godot_string , splitter : godot_string , slice : godot_int ) -> godot_string , pub godot_string_get_slicec : unsafe extern "C" fn ( self_ : * const godot_string , splitter : wchar_t , slice : godot_int ) -> godot_string , pub godot_string_split : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_allow_empty : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_floats : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_floats_allows_empty : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_floats_mk : unsafe extern "C" fn ( self_ : * const godot_string , splitters : * const godot_array ) -> godot_array , pub godot_string_split_floats_mk_allows_empty : unsafe extern "C" fn ( self_ : * const godot_string , splitters : * const godot_array ) -> godot_array , pub godot_string_split_ints : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_ints_allows_empty : unsafe extern "C" fn ( self_ : * const godot_string , splitter : * const godot_string ) -> godot_array , pub godot_string_split_ints_mk : unsafe extern "C" fn ( self_ : * const godot_string , splitters : * const godot_array ) -> godot_array , pub godot_string_split_ints_mk_allows_empty : unsafe extern "C" fn ( self_ : * const godot_string , splitters : * const godot_array ) -> godot_array , pub godot_string_split_spaces : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_array , pub godot_string_char_lowercase : unsafe extern "C" fn ( char : wchar_t ) -> wchar_t , pub godot_string_char_uppercase : unsafe extern "C" fn ( char : wchar_t ) -> wchar_t , pub godot_string_to_lower : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_to_upper : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_get_basename : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_get_extension : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_left : unsafe extern "C" fn ( self_ : * const godot_string , pos : godot_int ) -> godot_string , pub godot_string_ord_at : unsafe extern "C" fn ( self_ : * const godot_string , idx : godot_int ) -> wchar_t , pub godot_string_plus_file : unsafe extern "C" fn ( self_ : * const godot_string , file : * const godot_string ) -> godot_string , pub godot_string_right : unsafe extern "C" fn ( self_ : * const godot_string , pos : godot_int ) -> godot_string , pub godot_string_strip_edges : unsafe extern "C" fn ( self_ : * const godot_string , left : godot_bool , right : godot_bool ) -> godot_string , pub godot_string_strip_escapes : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_erase : unsafe extern "C" fn ( self_ : * mut godot_string , pos : godot_int , chars : godot_int ) -> ( ) , pub godot_string_ascii : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_char_string , pub godot_string_ascii_extended : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_char_string , pub godot_string_utf8 : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_char_string , pub godot_string_parse_utf8 : unsafe extern "C" fn ( self_ : * mut godot_string , utf8 : * const std :: os :: raw :: c_char ) -> godot_bool , pub godot_string_parse_utf8_with_len : unsafe extern "C" fn ( self_ : * mut godot_string , utf8 : * const std :: os :: raw :: c_char , len : godot_int ) -> godot_bool , pub godot_string_chars_to_utf8 : unsafe extern "C" fn ( utf8 : * const std :: os :: raw :: c_char ) -> godot_string , pub godot_string_chars_to_utf8_with_len : unsafe extern "C" fn ( utf8 : * const std :: os :: raw :: c_char , len : godot_int ) -> godot_string , pub godot_string_hash : unsafe extern "C" fn ( self_ : * const godot_string ) -> u32 , pub godot_string_hash64 : unsafe extern "C" fn ( self_ : * const godot_string ) -> u64 , pub godot_string_hash_chars : unsafe extern "C" fn ( cstr : * const std :: os :: raw :: c_char ) -> u32 , pub godot_string_hash_chars_with_len : unsafe extern "C" fn ( cstr : * const std :: os :: raw :: c_char , len : godot_int ) -> u32 , pub godot_string_hash_utf8_chars : unsafe extern "C" fn ( str : * const wchar_t ) -> u32 , pub godot_string_hash_utf8_chars_with_len : unsafe extern "C" fn ( str : * const wchar_t , len : godot_int ) -> u32 , pub godot_string_md5_buffer : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_pool_byte_array , pub godot_string_md5_text : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_sha256_buffer : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_pool_byte_array , pub godot_string_sha256_text : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_empty : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_get_base_dir : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_get_file : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_humanize_size : unsafe extern "C" fn ( size : usize ) -> godot_string , pub godot_string_is_abs_path : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_rel_path : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_resource_file : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_path_to : unsafe extern "C" fn ( self_ : * const godot_string , path : * const godot_string ) -> godot_string , pub godot_string_path_to_file : unsafe extern "C" fn ( self_ : * const godot_string , path : * const godot_string ) -> godot_string , pub godot_string_simplify_path : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_c_escape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_c_escape_multiline : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_c_unescape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_http_escape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_http_unescape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_json_escape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_word_wrap : unsafe extern "C" fn ( self_ : * const godot_string , chars_per_line : godot_int ) -> godot_string , pub godot_string_xml_escape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_xml_escape_with_quotes : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_xml_unescape : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_percent_decode : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_percent_encode : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_is_valid_float : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_valid_hex_number : unsafe extern "C" fn ( self_ : * const godot_string , with_prefix : godot_bool ) -> godot_bool , pub godot_string_is_valid_html_color : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_valid_identifier : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_valid_integer : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_is_valid_ip_address : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_bool , pub godot_string_destroy : unsafe extern "C" fn ( self_ : * mut godot_string ) -> ( ) , pub godot_string_name_new : unsafe extern "C" fn ( r_dest : * mut godot_string_name , name : * const godot_string ) -> ( ) , pub godot_string_name_new_data : unsafe extern "C" fn ( r_dest : * mut godot_string_name , name : * const std :: os :: raw :: c_char ) -> ( ) , pub godot_string_name_get_name : unsafe extern "C" fn ( self_ : * const godot_string_name ) -> godot_string , pub godot_string_name_get_hash : unsafe extern "C" fn ( self_ : * const godot_string_name ) -> u32 , pub godot_string_name_get_data_unique_pointer : unsafe extern "C" fn ( self_ : * const godot_string_name ) -> * const std :: ffi :: c_void , pub godot_string_name_operator_equal : unsafe extern "C" fn ( self_ : * const godot_string_name , other : * const godot_string_name ) -> godot_bool , pub godot_string_name_operator_less : unsafe extern "C" fn ( self_ : * const godot_string_name , other : * const godot_string_name ) -> godot_bool , pub godot_string_name_destroy : unsafe extern "C" fn ( self_ : * mut godot_string_name ) -> ( ) , pub godot_object_destroy : unsafe extern "C" fn ( o : * mut godot_object ) -> ( ) , pub godot_global_get_singleton : unsafe extern "C" fn ( name : * mut std :: os :: raw :: c_char ) -> * mut godot_object , pub godot_method_bind_get_method : unsafe extern "C" fn ( classname : * const std :: os :: raw :: c_char , methodname : * const std :: os :: raw :: c_char ) -> * mut godot_method_bind , pub godot_method_bind_ptrcall : unsafe extern "C" fn ( method_bind : * mut godot_method_bind , instance : * mut godot_object , args : * mut * const std :: ffi :: c_void , ret : * mut std :: ffi :: c_void ) -> ( ) , pub godot_method_bind_call : unsafe extern "C" fn ( method_bind : * mut godot_method_bind , instance : * mut godot_object , args : * mut * const godot_variant , arg_count : std :: os :: raw :: c_int , call_error : * mut godot_variant_call_error ) -> godot_variant , pub godot_get_class_constructor : unsafe extern "C" fn ( classname : * const std :: os :: raw :: c_char ) -> godot_class_constructor , pub godot_get_global_constants : unsafe extern "C" fn ( ) -> godot_dictionary , pub godot_register_native_call_type : unsafe extern "C" fn ( call_type : * const std :: os :: raw :: c_char , callback : native_call_cb ) -> ( ) , pub godot_alloc : unsafe extern "C" fn ( bytes : std :: os :: raw :: c_int ) -> * mut std :: ffi :: c_void , pub godot_realloc : unsafe extern "C" fn ( ptr : * mut std :: ffi :: c_void , bytes : std :: os :: raw :: c_int ) -> * mut std :: ffi :: c_void , pub godot_free : unsafe extern "C" fn ( ptr : * mut std :: ffi :: c_void ) -> ( ) , pub godot_print_error : unsafe extern "C" fn ( description : * const std :: os :: raw :: c_char , function : * const std :: os :: raw :: c_char , file : * const std :: os :: raw :: c_char , line : std :: os :: raw :: c_int ) -> ( ) , pub godot_print_warning : unsafe extern "C" fn ( description : * const std :: os :: raw :: c_char , function : * const std :: os :: raw :: c_char , file : * const std :: os :: raw :: c_char , line : std :: os :: raw :: c_int ) -> ( ) , pub godot_print : unsafe extern "C" fn ( message : * const godot_string ) -> ( ) , pub godot_color_to_abgr32 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_to_abgr64 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_to_argb64 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_to_rgba64 : unsafe extern "C" fn ( self_ : * const godot_color ) -> godot_int , pub godot_color_darkened : unsafe extern "C" fn ( self_ : * const godot_color , amount : godot_real ) -> godot_color , pub godot_color_from_hsv : unsafe extern "C" fn ( self_ : * const godot_color , h : godot_real , s : godot_real , v : godot_real , a : godot_real ) -> godot_color , pub godot_color_lightened : unsafe extern "C" fn ( self_ : * const godot_color , amount : godot_real ) -> godot_color , pub godot_array_duplicate : unsafe extern "C" fn ( self_ : * const godot_array , deep : godot_bool ) -> godot_array , pub godot_array_max : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_variant , pub godot_array_min : unsafe extern "C" fn ( self_ : * const godot_array ) -> godot_variant , pub godot_array_shuffle : unsafe extern "C" fn ( self_ : * mut godot_array ) -> ( ) , pub godot_basis_slerp : unsafe extern "C" fn ( self_ : * const godot_basis , b : * const godot_basis , t : godot_real ) -> godot_basis , pub godot_dictionary_get_with_default : unsafe extern "C" fn ( self_ : * const godot_dictionary , key : * const godot_variant , default : * const godot_variant ) -> godot_variant , pub godot_dictionary_erase_with_return : unsafe extern "C" fn ( self_ : * mut godot_dictionary , key : * const godot_variant ) -> bool , pub godot_node_path_get_as_property_path : unsafe extern "C" fn ( self_ : * const godot_node_path ) -> godot_node_path , pub godot_quat_set_axis_angle : unsafe extern "C" fn ( self_ : * mut godot_quat , axis : * const godot_vector3 , angle : godot_real ) -> ( ) , pub godot_rect2_grow_individual : unsafe extern "C" fn ( self_ : * const godot_rect2 , left : godot_real , top : godot_real , right : godot_real , bottom : godot_real ) -> godot_rect2 , pub godot_rect2_grow_margin : unsafe extern "C" fn ( self_ : * const godot_rect2 , margin : godot_int , by : godot_real ) -> godot_rect2 , pub godot_rect2_abs : unsafe extern "C" fn ( self_ : * const godot_rect2 ) -> godot_rect2 , pub godot_string_dedent : unsafe extern "C" fn ( self_ : * const godot_string ) -> godot_string , pub godot_string_trim_prefix : unsafe extern "C" fn ( self_ : * const godot_string , prefix : * const godot_string ) -> godot_string , pub godot_string_trim_suffix : unsafe extern "C" fn ( self_ : * const godot_string , suffix : * const godot_string ) -> godot_string , pub godot_string_rstrip : unsafe extern "C" fn ( self_ : * const godot_string , chars : * const godot_string ) -> godot_string , pub godot_string_rsplit : unsafe extern "C" fn ( self_ : * const godot_string , divisor : * const godot_string , allow_empty : godot_bool , maxsplit : godot_int ) -> godot_pool_string_array , pub godot_basis_get_quat : unsafe extern "C" fn ( self_ : * const godot_basis ) -> godot_quat , pub godot_basis_set_quat : unsafe extern "C" fn ( self_ : * mut godot_basis , quat : * const godot_quat ) -> ( ) , pub godot_basis_set_axis_angle_scale : unsafe extern "C" fn ( self_ : * mut godot_basis , axis : * const godot_vector3 , phi : godot_real , scale : * const godot_vector3 ) -> ( ) , pub godot_basis_set_euler_scale : unsafe extern "C" fn ( self_ : * mut godot_basis , euler : * const godot_vector3 , scale : * const godot_vector3 ) -> ( ) , pub godot_basis_set_quat_scale : unsafe extern "C" fn ( self_ : * mut godot_basis , quat : * const godot_quat , scale : * const godot_vector3 ) -> ( ) , pub godot_is_instance_valid : unsafe extern "C" fn ( object : * const godot_object ) -> bool , pub godot_quat_new_with_basis : unsafe extern "C" fn ( r_dest : * mut godot_quat , basis : * const godot_basis ) -> ( ) , pub godot_quat_new_with_euler : unsafe extern "C" fn ( r_dest : * mut godot_quat , euler : * const godot_vector3 ) -> ( ) , pub godot_transform_new_with_quat : unsafe extern "C" fn ( r_dest : * mut godot_transform , quat : * const godot_quat ) -> ( ) , pub godot_variant_get_operator_name : unsafe extern "C" fn ( op : godot_variant_operator ) -> godot_string , pub godot_variant_evaluate : unsafe extern "C" fn ( op : godot_variant_operator , a : * const godot_variant , b : * const godot_variant , r_ret : * mut godot_variant , r_valid : * mut godot_bool ) -> ( ) , pub godot_nativescript_register_class : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , base : * const std :: os :: raw :: c_char , create_func : godot_instance_create_func , destroy_func : godot_instance_destroy_func ) -> ( ) , pub godot_nativescript_register_tool_class : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , base : * const std :: os :: raw :: c_char , create_func : godot_instance_create_func , destroy_func : godot_instance_destroy_func ) -> ( ) , pub godot_nativescript_register_method : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , function_name : * const std :: os :: raw :: c_char , attr : godot_method_attributes , method : godot_instance_method ) -> ( ) , pub godot_nativescript_register_property : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , path : * const std :: os :: raw :: c_char , attr : * mut godot_property_attributes , set_func : godot_property_set_func , get_func : godot_property_get_func ) -> ( ) , pub godot_nativescript_register_signal : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , signal : * const godot_signal ) -> ( ) , pub godot_nativescript_get_userdata : unsafe extern "C" fn ( instance : * mut godot_object ) -> * mut std :: ffi :: c_void , pub godot_nativescript_set_method_argument_information : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , function_name : * const std :: os :: raw :: c_char , num_args : std :: os :: raw :: c_int , args : * const godot_method_arg ) -> ( ) , pub godot_nativescript_set_class_documentation : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , documentation : godot_string ) -> ( ) , pub godot_nativescript_set_method_documentation : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , function_name : * const std :: os :: raw :: c_char , documentation : godot_string ) -> ( ) , pub godot_nativescript_set_property_documentation : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , path : * const std :: os :: raw :: c_char , documentation : godot_string ) -> ( ) , pub godot_nativescript_set_signal_documentation : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , signal_name : * const std :: os :: raw :: c_char , documentation : godot_string ) -> ( ) , pub godot_nativescript_set_global_type_tag : unsafe extern "C" fn ( idx : std :: os :: raw :: c_int , name : * const std :: os :: raw :: c_char , type_tag : * const std :: ffi :: c_void ) -> ( ) , pub godot_nativescript_get_global_type_tag : unsafe extern "C" fn ( idx : std :: os :: raw :: c_int , name : * const std :: os :: raw :: c_char ) -> * const std :: ffi :: c_void , pub godot_nativescript_set_type_tag : unsafe extern "C" fn ( gdnative_handle : * mut std :: ffi :: c_void , name : * const std :: os :: raw :: c_char , type_tag : * const std :: ffi :: c_void ) -> ( ) , pub godot_nativescript_get_type_tag : unsafe extern "C" fn ( object : * const godot_object ) -> * const std :: ffi :: c_void , pub godot_nativescript_register_instance_binding_data_functions : unsafe extern "C" fn ( binding_functions : godot_instance_binding_functions ) -> std :: os :: raw :: c_int , pub godot_nativescript_unregister_instance_binding_data_functions : unsafe extern "C" fn ( idx : std :: os :: raw :: c_int ) -> ( ) , pub godot_nativescript_get_instance_binding_data : unsafe extern "C" fn ( idx : std :: os :: raw :: c_int , object : * mut godot_object ) -> * mut std :: ffi :: c_void , pub godot_nativescript_profiling_add_data : unsafe extern "C" fn ( signature : * const std :: os :: raw :: c_char , line : u64 ) -> ( ) , pub godot_pluginscript_register_language : unsafe extern "C" fn ( language_desc : * const godot_pluginscript_language_desc ) -> ( ) , pub godot_arvr_register_interface : unsafe extern "C" fn ( interface : * const godot_arvr_interface_gdnative ) -> ( ) , pub godot_arvr_get_worldscale : unsafe extern "C" fn ( ) -> godot_real , pub godot_arvr_get_reference_frame : unsafe extern "C" fn ( ) -> godot_transform , pub godot_arvr_blit : unsafe extern "C" fn ( eye : std :: os :: raw :: c_int , render_target : * mut godot_rid , screen_rect : * mut godot_rect2 ) -> ( ) , pub godot_arvr_get_texid : unsafe extern "C" fn ( render_target : * mut godot_rid ) -> godot_int , pub godot_arvr_add_controller : unsafe extern "C" fn ( device_name : * mut std :: os :: raw :: c_char , hand : godot_int , tracks_orientation : godot_bool , tracks_position : godot_bool ) -> godot_int , pub godot_arvr_remove_controller : unsafe extern "C" fn ( controller_id : godot_int ) -> ( ) , pub godot_arvr_set_controller_transform : unsafe extern "C" fn ( controller_id : godot_int , transform : * mut godot_transform , tracks_orientation : godot_bool , tracks_position : godot_bool ) -> ( ) , pub godot_arvr_set_controller_button : unsafe extern "C" fn ( controller_id : godot_int , button : godot_int , is_pressed : godot_bool ) -> ( ) , pub godot_arvr_set_controller_axis : unsafe extern "C" fn ( controller_id : godot_int , exis : godot_int , value : godot_real , can_be_negative : godot_bool ) -> ( ) , pub godot_arvr_get_controller_rumble : unsafe extern "C" fn ( controller_id : godot_int ) -> godot_real , pub godot_videodecoder_file_read : unsafe extern "C" fn ( file_ptr : * mut std :: ffi :: c_void , buf : * mut u8 , buf_size : std :: os :: raw :: c_int ) -> godot_int , pub godot_videodecoder_file_seek : unsafe extern "C" fn ( file_ptr : * mut std :: ffi :: c_void , pos : i64 , whence : std :: os :: raw :: c_int ) -> i64 , pub godot_videodecoder_register_decoder : unsafe extern "C" fn ( interface : * const godot_videodecoder_interface_gdnative ) -> ( ) , pub godot_net_bind_stream_peer : unsafe extern "C" fn ( obj : * mut godot_object , interface : * const godot_net_stream_peer ) -> ( ) , pub godot_net_bind_packet_peer : unsafe extern "C" fn ( obj : * mut godot_object , interface : * const godot_net_packet_peer ) -> ( ) , pub godot_net_bind_multiplayer_peer : unsafe extern "C" fn ( obj : * mut godot_object , interface : * const godot_net_multiplayer_peer ) -> ( ) , } impl GodotApi { pub unsafe fn from_raw ( core_api_struct : * const godot_gdnative_core_api_struct ) -> Self { let core_1_0 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_CORE , 1u32 , 0u32 ) as * const godot_gdnative_core_api_struct ; let core_1_1 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_CORE , 1u32 , 1u32 ) as * const godot_gdnative_core_1_1_api_struct ; let nativescript_1_0 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_NATIVESCRIPT , 1u32 , 0u32 ) as * const godot_gdnative_ext_nativescript_api_struct ; let nativescript_1_1 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_NATIVESCRIPT , 1u32 , 1u32 ) as * const godot_gdnative_ext_nativescript_1_1_api_struct ; let pluginscript_1_0 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_PLUGINSCRIPT , 1u32 , 0u32 ) as * const godot_gdnative_ext_pluginscript_api_struct ; let arvr_1_1 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_ARVR , 1u32 , 1u32 ) as * const godot_gdnative_ext_arvr_api_struct ; let videodecoder_0_1 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_VIDEODECODER , 0u32 , 1u32 ) as * const godot_gdnative_ext_videodecoder_api_struct ; let net_3_1 = find_api_ptr ( core_api_struct , GDNATIVE_API_TYPES_GDNATIVE_EXT_NET , 3u32 , 1u32 ) as * const godot_gdnative_ext_net_api_struct ; GodotApi { godot_color_new_rgba : ( * core_1_0 ) . godot_color_new_rgba . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_new_rgba" ) , godot_color_new_rgb : ( * core_1_0 ) . godot_color_new_rgb . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_new_rgb" ) , godot_color_get_r : ( * core_1_0 ) . godot_color_get_r . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_r" ) , godot_color_set_r : ( * core_1_0 ) . godot_color_set_r . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_set_r" ) , godot_color_get_g : ( * core_1_0 ) . godot_color_get_g . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_g" ) , godot_color_set_g : ( * core_1_0 ) . godot_color_set_g . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_set_g" ) , godot_color_get_b : ( * core_1_0 ) . godot_color_get_b . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_b" ) , godot_color_set_b : ( * core_1_0 ) . godot_color_set_b . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_set_b" ) , godot_color_get_a : ( * core_1_0 ) . godot_color_get_a . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_a" ) , godot_color_set_a : ( * core_1_0 ) . godot_color_set_a . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_set_a" ) , godot_color_get_h : ( * core_1_0 ) . godot_color_get_h . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_h" ) , godot_color_get_s : ( * core_1_0 ) . godot_color_get_s . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_s" ) , godot_color_get_v : ( * core_1_0 ) . godot_color_get_v . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_get_v" ) , godot_color_as_string : ( * core_1_0 ) . godot_color_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_as_string" ) , godot_color_to_rgba32 : ( * core_1_0 ) . godot_color_to_rgba32 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_to_rgba32" ) , godot_color_to_argb32 : ( * core_1_0 ) . godot_color_to_argb32 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_to_argb32" ) , godot_color_gray : ( * core_1_0 ) . godot_color_gray . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_gray" ) , godot_color_inverted : ( * core_1_0 ) . godot_color_inverted . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_inverted" ) , godot_color_contrasted : ( * core_1_0 ) . godot_color_contrasted . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_contrasted" ) , godot_color_linear_interpolate : ( * core_1_0 ) . godot_color_linear_interpolate . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_linear_interpolate" ) , godot_color_blend : ( * core_1_0 ) . godot_color_blend . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_blend" ) , godot_color_to_html : ( * core_1_0 ) . godot_color_to_html . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_to_html" ) , godot_color_operator_equal : ( * core_1_0 ) . godot_color_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_operator_equal" ) , godot_color_operator_less : ( * core_1_0 ) . godot_color_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_color_operator_less" ) , godot_vector2_new : ( * core_1_0 ) . godot_vector2_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_new" ) , godot_vector2_as_string : ( * core_1_0 ) . godot_vector2_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_as_string" ) , godot_vector2_normalized : ( * core_1_0 ) . godot_vector2_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_normalized" ) , godot_vector2_length : ( * core_1_0 ) . godot_vector2_length . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_length" ) , godot_vector2_angle : ( * core_1_0 ) . godot_vector2_angle . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_angle" ) , godot_vector2_length_squared : ( * core_1_0 ) . godot_vector2_length_squared . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_length_squared" ) , godot_vector2_is_normalized : ( * core_1_0 ) . godot_vector2_is_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_is_normalized" ) , godot_vector2_distance_to : ( * core_1_0 ) . godot_vector2_distance_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_distance_to" ) , godot_vector2_distance_squared_to : ( * core_1_0 ) . godot_vector2_distance_squared_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_distance_squared_to" ) , godot_vector2_angle_to : ( * core_1_0 ) . godot_vector2_angle_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_angle_to" ) , godot_vector2_angle_to_point : ( * core_1_0 ) . godot_vector2_angle_to_point . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_angle_to_point" ) , godot_vector2_linear_interpolate : ( * core_1_0 ) . godot_vector2_linear_interpolate . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_linear_interpolate" ) , godot_vector2_cubic_interpolate : ( * core_1_0 ) . godot_vector2_cubic_interpolate . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_cubic_interpolate" ) , godot_vector2_rotated : ( * core_1_0 ) . godot_vector2_rotated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_rotated" ) , godot_vector2_tangent : ( * core_1_0 ) . godot_vector2_tangent . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_tangent" ) , godot_vector2_floor : ( * core_1_0 ) . godot_vector2_floor . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_floor" ) , godot_vector2_snapped : ( * core_1_0 ) . godot_vector2_snapped . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_snapped" ) , godot_vector2_aspect : ( * core_1_0 ) . godot_vector2_aspect . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_aspect" ) , godot_vector2_dot : ( * core_1_0 ) . godot_vector2_dot . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_dot" ) , godot_vector2_slide : ( * core_1_0 ) . godot_vector2_slide . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_slide" ) , godot_vector2_bounce : ( * core_1_0 ) . godot_vector2_bounce . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_bounce" ) , godot_vector2_reflect : ( * core_1_0 ) . godot_vector2_reflect . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_reflect" ) , godot_vector2_abs : ( * core_1_0 ) . godot_vector2_abs . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_abs" ) , godot_vector2_clamped : ( * core_1_0 ) . godot_vector2_clamped . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_clamped" ) , godot_vector2_operator_add : ( * core_1_0 ) . godot_vector2_operator_add . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_add" ) , godot_vector2_operator_subtract : ( * core_1_0 ) . godot_vector2_operator_subtract . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_subtract" ) , godot_vector2_operator_multiply_vector : ( * core_1_0 ) . godot_vector2_operator_multiply_vector . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_multiply_vector" ) , godot_vector2_operator_multiply_scalar : ( * core_1_0 ) . godot_vector2_operator_multiply_scalar . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_multiply_scalar" ) , godot_vector2_operator_divide_vector : ( * core_1_0 ) . godot_vector2_operator_divide_vector . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_divide_vector" ) , godot_vector2_operator_divide_scalar : ( * core_1_0 ) . godot_vector2_operator_divide_scalar . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_divide_scalar" ) , godot_vector2_operator_equal : ( * core_1_0 ) . godot_vector2_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_equal" ) , godot_vector2_operator_less : ( * core_1_0 ) . godot_vector2_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_less" ) , godot_vector2_operator_neg : ( * core_1_0 ) . godot_vector2_operator_neg . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_operator_neg" ) , godot_vector2_set_x : ( * core_1_0 ) . godot_vector2_set_x . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_set_x" ) , godot_vector2_set_y : ( * core_1_0 ) . godot_vector2_set_y . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_set_y" ) , godot_vector2_get_x : ( * core_1_0 ) . godot_vector2_get_x . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_get_x" ) , godot_vector2_get_y : ( * core_1_0 ) . godot_vector2_get_y . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector2_get_y" ) , godot_quat_new : ( * core_1_0 ) . godot_quat_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_new" ) , godot_quat_new_with_axis_angle : ( * core_1_0 ) . godot_quat_new_with_axis_angle . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_new_with_axis_angle" ) , godot_quat_get_x : ( * core_1_0 ) . godot_quat_get_x . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_get_x" ) , godot_quat_set_x : ( * core_1_0 ) . godot_quat_set_x . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_set_x" ) , godot_quat_get_y : ( * core_1_0 ) . godot_quat_get_y . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_get_y" ) , godot_quat_set_y : ( * core_1_0 ) . godot_quat_set_y . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_set_y" ) , godot_quat_get_z : ( * core_1_0 ) . godot_quat_get_z . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_get_z" ) , godot_quat_set_z : ( * core_1_0 ) . godot_quat_set_z . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_set_z" ) , godot_quat_get_w : ( * core_1_0 ) . godot_quat_get_w . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_get_w" ) , godot_quat_set_w : ( * core_1_0 ) . godot_quat_set_w . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_set_w" ) , godot_quat_as_string : ( * core_1_0 ) . godot_quat_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_as_string" ) , godot_quat_length : ( * core_1_0 ) . godot_quat_length . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_length" ) , godot_quat_length_squared : ( * core_1_0 ) . godot_quat_length_squared . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_length_squared" ) , godot_quat_normalized : ( * core_1_0 ) . godot_quat_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_normalized" ) , godot_quat_is_normalized : ( * core_1_0 ) . godot_quat_is_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_is_normalized" ) , godot_quat_inverse : ( * core_1_0 ) . godot_quat_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_inverse" ) , godot_quat_dot : ( * core_1_0 ) . godot_quat_dot . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_dot" ) , godot_quat_xform : ( * core_1_0 ) . godot_quat_xform . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_xform" ) , godot_quat_slerp : ( * core_1_0 ) . godot_quat_slerp . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_slerp" ) , godot_quat_slerpni : ( * core_1_0 ) . godot_quat_slerpni . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_slerpni" ) , godot_quat_cubic_slerp : ( * core_1_0 ) . godot_quat_cubic_slerp . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_cubic_slerp" ) , godot_quat_operator_multiply : ( * core_1_0 ) . godot_quat_operator_multiply . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_multiply" ) , godot_quat_operator_add : ( * core_1_0 ) . godot_quat_operator_add . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_add" ) , godot_quat_operator_subtract : ( * core_1_0 ) . godot_quat_operator_subtract . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_subtract" ) , godot_quat_operator_divide : ( * core_1_0 ) . godot_quat_operator_divide . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_divide" ) , godot_quat_operator_equal : ( * core_1_0 ) . godot_quat_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_equal" ) , godot_quat_operator_neg : ( * core_1_0 ) . godot_quat_operator_neg . expect ( "API function missing: godot_gdnative_core_api_struct.godot_quat_operator_neg" ) , godot_basis_new_with_rows : ( * core_1_0 ) . godot_basis_new_with_rows . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_new_with_rows" ) , godot_basis_new_with_axis_and_angle : ( * core_1_0 ) . godot_basis_new_with_axis_and_angle . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_new_with_axis_and_angle" ) , godot_basis_new_with_euler : ( * core_1_0 ) . godot_basis_new_with_euler . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_new_with_euler" ) , godot_basis_as_string : ( * core_1_0 ) . godot_basis_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_as_string" ) , godot_basis_inverse : ( * core_1_0 ) . godot_basis_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_inverse" ) , godot_basis_transposed : ( * core_1_0 ) . godot_basis_transposed . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_transposed" ) , godot_basis_orthonormalized : ( * core_1_0 ) . godot_basis_orthonormalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_orthonormalized" ) , godot_basis_determinant : ( * core_1_0 ) . godot_basis_determinant . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_determinant" ) , godot_basis_rotated : ( * core_1_0 ) . godot_basis_rotated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_rotated" ) , godot_basis_scaled : ( * core_1_0 ) . godot_basis_scaled . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_scaled" ) , godot_basis_get_scale : ( * core_1_0 ) . godot_basis_get_scale . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_scale" ) , godot_basis_get_euler : ( * core_1_0 ) . godot_basis_get_euler . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_euler" ) , godot_basis_tdotx : ( * core_1_0 ) . godot_basis_tdotx . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_tdotx" ) , godot_basis_tdoty : ( * core_1_0 ) . godot_basis_tdoty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_tdoty" ) , godot_basis_tdotz : ( * core_1_0 ) . godot_basis_tdotz . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_tdotz" ) , godot_basis_xform : ( * core_1_0 ) . godot_basis_xform . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_xform" ) , godot_basis_xform_inv : ( * core_1_0 ) . godot_basis_xform_inv . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_xform_inv" ) , godot_basis_get_orthogonal_index : ( * core_1_0 ) . godot_basis_get_orthogonal_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_orthogonal_index" ) , godot_basis_new : ( * core_1_0 ) . godot_basis_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_new" ) , godot_basis_new_with_euler_quat : ( * core_1_0 ) . godot_basis_new_with_euler_quat . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_new_with_euler_quat" ) , godot_basis_get_elements : ( * core_1_0 ) . godot_basis_get_elements . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_elements" ) , godot_basis_get_axis : ( * core_1_0 ) . godot_basis_get_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_axis" ) , godot_basis_set_axis : ( * core_1_0 ) . godot_basis_set_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_set_axis" ) , godot_basis_get_row : ( * core_1_0 ) . godot_basis_get_row . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_get_row" ) , godot_basis_set_row : ( * core_1_0 ) . godot_basis_set_row . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_set_row" ) , godot_basis_operator_equal : ( * core_1_0 ) . godot_basis_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_operator_equal" ) , godot_basis_operator_add : ( * core_1_0 ) . godot_basis_operator_add . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_operator_add" ) , godot_basis_operator_subtract : ( * core_1_0 ) . godot_basis_operator_subtract . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_operator_subtract" ) , godot_basis_operator_multiply_vector : ( * core_1_0 ) . godot_basis_operator_multiply_vector . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_operator_multiply_vector" ) , godot_basis_operator_multiply_scalar : ( * core_1_0 ) . godot_basis_operator_multiply_scalar . expect ( "API function missing: godot_gdnative_core_api_struct.godot_basis_operator_multiply_scalar" ) , godot_vector3_new : ( * core_1_0 ) . godot_vector3_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_new" ) , godot_vector3_as_string : ( * core_1_0 ) . godot_vector3_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_as_string" ) , godot_vector3_min_axis : ( * core_1_0 ) . godot_vector3_min_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_min_axis" ) , godot_vector3_max_axis : ( * core_1_0 ) . godot_vector3_max_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_max_axis" ) , godot_vector3_length : ( * core_1_0 ) . godot_vector3_length . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_length" ) , godot_vector3_length_squared : ( * core_1_0 ) . godot_vector3_length_squared . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_length_squared" ) , godot_vector3_is_normalized : ( * core_1_0 ) . godot_vector3_is_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_is_normalized" ) , godot_vector3_normalized : ( * core_1_0 ) . godot_vector3_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_normalized" ) , godot_vector3_inverse : ( * core_1_0 ) . godot_vector3_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_inverse" ) , godot_vector3_snapped : ( * core_1_0 ) . godot_vector3_snapped . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_snapped" ) , godot_vector3_rotated : ( * core_1_0 ) . godot_vector3_rotated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_rotated" ) , godot_vector3_linear_interpolate : ( * core_1_0 ) . godot_vector3_linear_interpolate . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_linear_interpolate" ) , godot_vector3_cubic_interpolate : ( * core_1_0 ) . godot_vector3_cubic_interpolate . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_cubic_interpolate" ) , godot_vector3_dot : ( * core_1_0 ) . godot_vector3_dot . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_dot" ) , godot_vector3_cross : ( * core_1_0 ) . godot_vector3_cross . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_cross" ) , godot_vector3_outer : ( * core_1_0 ) . godot_vector3_outer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_outer" ) , godot_vector3_to_diagonal_matrix : ( * core_1_0 ) . godot_vector3_to_diagonal_matrix . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_to_diagonal_matrix" ) , godot_vector3_abs : ( * core_1_0 ) . godot_vector3_abs . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_abs" ) , godot_vector3_floor : ( * core_1_0 ) . godot_vector3_floor . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_floor" ) , godot_vector3_ceil : ( * core_1_0 ) . godot_vector3_ceil . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_ceil" ) , godot_vector3_distance_to : ( * core_1_0 ) . godot_vector3_distance_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_distance_to" ) , godot_vector3_distance_squared_to : ( * core_1_0 ) . godot_vector3_distance_squared_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_distance_squared_to" ) , godot_vector3_angle_to : ( * core_1_0 ) . godot_vector3_angle_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_angle_to" ) , godot_vector3_slide : ( * core_1_0 ) . godot_vector3_slide . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_slide" ) , godot_vector3_bounce : ( * core_1_0 ) . godot_vector3_bounce . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_bounce" ) , godot_vector3_reflect : ( * core_1_0 ) . godot_vector3_reflect . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_reflect" ) , godot_vector3_operator_add : ( * core_1_0 ) . godot_vector3_operator_add . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_add" ) , godot_vector3_operator_subtract : ( * core_1_0 ) . godot_vector3_operator_subtract . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_subtract" ) , godot_vector3_operator_multiply_vector : ( * core_1_0 ) . godot_vector3_operator_multiply_vector . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_multiply_vector" ) , godot_vector3_operator_multiply_scalar : ( * core_1_0 ) . godot_vector3_operator_multiply_scalar . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_multiply_scalar" ) , godot_vector3_operator_divide_vector : ( * core_1_0 ) . godot_vector3_operator_divide_vector . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_divide_vector" ) , godot_vector3_operator_divide_scalar : ( * core_1_0 ) . godot_vector3_operator_divide_scalar . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_divide_scalar" ) , godot_vector3_operator_equal : ( * core_1_0 ) . godot_vector3_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_equal" ) , godot_vector3_operator_less : ( * core_1_0 ) . godot_vector3_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_less" ) , godot_vector3_operator_neg : ( * core_1_0 ) . godot_vector3_operator_neg . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_operator_neg" ) , godot_vector3_set_axis : ( * core_1_0 ) . godot_vector3_set_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_set_axis" ) , godot_vector3_get_axis : ( * core_1_0 ) . godot_vector3_get_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_vector3_get_axis" ) , godot_pool_byte_array_new : ( * core_1_0 ) . godot_pool_byte_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_new" ) , godot_pool_byte_array_new_copy : ( * core_1_0 ) . godot_pool_byte_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_new_copy" ) , godot_pool_byte_array_new_with_array : ( * core_1_0 ) . godot_pool_byte_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_new_with_array" ) , godot_pool_byte_array_append : ( * core_1_0 ) . godot_pool_byte_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_append" ) , godot_pool_byte_array_append_array : ( * core_1_0 ) . godot_pool_byte_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_append_array" ) , godot_pool_byte_array_insert : ( * core_1_0 ) . godot_pool_byte_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_insert" ) , godot_pool_byte_array_invert : ( * core_1_0 ) . godot_pool_byte_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_invert" ) , godot_pool_byte_array_push_back : ( * core_1_0 ) . godot_pool_byte_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_push_back" ) , godot_pool_byte_array_remove : ( * core_1_0 ) . godot_pool_byte_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_remove" ) , godot_pool_byte_array_resize : ( * core_1_0 ) . godot_pool_byte_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_resize" ) , godot_pool_byte_array_read : ( * core_1_0 ) . godot_pool_byte_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_read" ) , godot_pool_byte_array_write : ( * core_1_0 ) . godot_pool_byte_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_write" ) , godot_pool_byte_array_set : ( * core_1_0 ) . godot_pool_byte_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_set" ) , godot_pool_byte_array_get : ( * core_1_0 ) . godot_pool_byte_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_get" ) , godot_pool_byte_array_size : ( * core_1_0 ) . godot_pool_byte_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_size" ) , godot_pool_byte_array_destroy : ( * core_1_0 ) . godot_pool_byte_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_destroy" ) , godot_pool_int_array_new : ( * core_1_0 ) . godot_pool_int_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_new" ) , godot_pool_int_array_new_copy : ( * core_1_0 ) . godot_pool_int_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_new_copy" ) , godot_pool_int_array_new_with_array : ( * core_1_0 ) . godot_pool_int_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_new_with_array" ) , godot_pool_int_array_append : ( * core_1_0 ) . godot_pool_int_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_append" ) , godot_pool_int_array_append_array : ( * core_1_0 ) . godot_pool_int_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_append_array" ) , godot_pool_int_array_insert : ( * core_1_0 ) . godot_pool_int_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_insert" ) , godot_pool_int_array_invert : ( * core_1_0 ) . godot_pool_int_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_invert" ) , godot_pool_int_array_push_back : ( * core_1_0 ) . godot_pool_int_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_push_back" ) , godot_pool_int_array_remove : ( * core_1_0 ) . godot_pool_int_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_remove" ) , godot_pool_int_array_resize : ( * core_1_0 ) . godot_pool_int_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_resize" ) , godot_pool_int_array_read : ( * core_1_0 ) . godot_pool_int_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_read" ) , godot_pool_int_array_write : ( * core_1_0 ) . godot_pool_int_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_write" ) , godot_pool_int_array_set : ( * core_1_0 ) . godot_pool_int_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_set" ) , godot_pool_int_array_get : ( * core_1_0 ) . godot_pool_int_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_get" ) , godot_pool_int_array_size : ( * core_1_0 ) . godot_pool_int_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_size" ) , godot_pool_int_array_destroy : ( * core_1_0 ) . godot_pool_int_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_destroy" ) , godot_pool_real_array_new : ( * core_1_0 ) . godot_pool_real_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_new" ) , godot_pool_real_array_new_copy : ( * core_1_0 ) . godot_pool_real_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_new_copy" ) , godot_pool_real_array_new_with_array : ( * core_1_0 ) . godot_pool_real_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_new_with_array" ) , godot_pool_real_array_append : ( * core_1_0 ) . godot_pool_real_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_append" ) , godot_pool_real_array_append_array : ( * core_1_0 ) . godot_pool_real_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_append_array" ) , godot_pool_real_array_insert : ( * core_1_0 ) . godot_pool_real_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_insert" ) , godot_pool_real_array_invert : ( * core_1_0 ) . godot_pool_real_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_invert" ) , godot_pool_real_array_push_back : ( * core_1_0 ) . godot_pool_real_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_push_back" ) , godot_pool_real_array_remove : ( * core_1_0 ) . godot_pool_real_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_remove" ) , godot_pool_real_array_resize : ( * core_1_0 ) . godot_pool_real_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_resize" ) , godot_pool_real_array_read : ( * core_1_0 ) . godot_pool_real_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_read" ) , godot_pool_real_array_write : ( * core_1_0 ) . godot_pool_real_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_write" ) , godot_pool_real_array_set : ( * core_1_0 ) . godot_pool_real_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_set" ) , godot_pool_real_array_get : ( * core_1_0 ) . godot_pool_real_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_get" ) , godot_pool_real_array_size : ( * core_1_0 ) . godot_pool_real_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_size" ) , godot_pool_real_array_destroy : ( * core_1_0 ) . godot_pool_real_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_destroy" ) , godot_pool_string_array_new : ( * core_1_0 ) . godot_pool_string_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_new" ) , godot_pool_string_array_new_copy : ( * core_1_0 ) . godot_pool_string_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_new_copy" ) , godot_pool_string_array_new_with_array : ( * core_1_0 ) . godot_pool_string_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_new_with_array" ) , godot_pool_string_array_append : ( * core_1_0 ) . godot_pool_string_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_append" ) , godot_pool_string_array_append_array : ( * core_1_0 ) . godot_pool_string_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_append_array" ) , godot_pool_string_array_insert : ( * core_1_0 ) . godot_pool_string_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_insert" ) , godot_pool_string_array_invert : ( * core_1_0 ) . godot_pool_string_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_invert" ) , godot_pool_string_array_push_back : ( * core_1_0 ) . godot_pool_string_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_push_back" ) , godot_pool_string_array_remove : ( * core_1_0 ) . godot_pool_string_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_remove" ) , godot_pool_string_array_resize : ( * core_1_0 ) . godot_pool_string_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_resize" ) , godot_pool_string_array_read : ( * core_1_0 ) . godot_pool_string_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_read" ) , godot_pool_string_array_write : ( * core_1_0 ) . godot_pool_string_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_write" ) , godot_pool_string_array_set : ( * core_1_0 ) . godot_pool_string_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_set" ) , godot_pool_string_array_get : ( * core_1_0 ) . godot_pool_string_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_get" ) , godot_pool_string_array_size : ( * core_1_0 ) . godot_pool_string_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_size" ) , godot_pool_string_array_destroy : ( * core_1_0 ) . godot_pool_string_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_destroy" ) , godot_pool_vector2_array_new : ( * core_1_0 ) . godot_pool_vector2_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_new" ) , godot_pool_vector2_array_new_copy : ( * core_1_0 ) . godot_pool_vector2_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_new_copy" ) , godot_pool_vector2_array_new_with_array : ( * core_1_0 ) . godot_pool_vector2_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_new_with_array" ) , godot_pool_vector2_array_append : ( * core_1_0 ) . godot_pool_vector2_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_append" ) , godot_pool_vector2_array_append_array : ( * core_1_0 ) . godot_pool_vector2_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_append_array" ) , godot_pool_vector2_array_insert : ( * core_1_0 ) . godot_pool_vector2_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_insert" ) , godot_pool_vector2_array_invert : ( * core_1_0 ) . godot_pool_vector2_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_invert" ) , godot_pool_vector2_array_push_back : ( * core_1_0 ) . godot_pool_vector2_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_push_back" ) , godot_pool_vector2_array_remove : ( * core_1_0 ) . godot_pool_vector2_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_remove" ) , godot_pool_vector2_array_resize : ( * core_1_0 ) . godot_pool_vector2_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_resize" ) , godot_pool_vector2_array_read : ( * core_1_0 ) . godot_pool_vector2_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_read" ) , godot_pool_vector2_array_write : ( * core_1_0 ) . godot_pool_vector2_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_write" ) , godot_pool_vector2_array_set : ( * core_1_0 ) . godot_pool_vector2_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_set" ) , godot_pool_vector2_array_get : ( * core_1_0 ) . godot_pool_vector2_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_get" ) , godot_pool_vector2_array_size : ( * core_1_0 ) . godot_pool_vector2_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_size" ) , godot_pool_vector2_array_destroy : ( * core_1_0 ) . godot_pool_vector2_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_destroy" ) , godot_pool_vector3_array_new : ( * core_1_0 ) . godot_pool_vector3_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_new" ) , godot_pool_vector3_array_new_copy : ( * core_1_0 ) . godot_pool_vector3_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_new_copy" ) , godot_pool_vector3_array_new_with_array : ( * core_1_0 ) . godot_pool_vector3_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_new_with_array" ) , godot_pool_vector3_array_append : ( * core_1_0 ) . godot_pool_vector3_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_append" ) , godot_pool_vector3_array_append_array : ( * core_1_0 ) . godot_pool_vector3_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_append_array" ) , godot_pool_vector3_array_insert : ( * core_1_0 ) . godot_pool_vector3_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_insert" ) , godot_pool_vector3_array_invert : ( * core_1_0 ) . godot_pool_vector3_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_invert" ) , godot_pool_vector3_array_push_back : ( * core_1_0 ) . godot_pool_vector3_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_push_back" ) , godot_pool_vector3_array_remove : ( * core_1_0 ) . godot_pool_vector3_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_remove" ) , godot_pool_vector3_array_resize : ( * core_1_0 ) . godot_pool_vector3_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_resize" ) , godot_pool_vector3_array_read : ( * core_1_0 ) . godot_pool_vector3_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_read" ) , godot_pool_vector3_array_write : ( * core_1_0 ) . godot_pool_vector3_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_write" ) , godot_pool_vector3_array_set : ( * core_1_0 ) . godot_pool_vector3_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_set" ) , godot_pool_vector3_array_get : ( * core_1_0 ) . godot_pool_vector3_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_get" ) , godot_pool_vector3_array_size : ( * core_1_0 ) . godot_pool_vector3_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_size" ) , godot_pool_vector3_array_destroy : ( * core_1_0 ) . godot_pool_vector3_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_destroy" ) , godot_pool_color_array_new : ( * core_1_0 ) . godot_pool_color_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_new" ) , godot_pool_color_array_new_copy : ( * core_1_0 ) . godot_pool_color_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_new_copy" ) , godot_pool_color_array_new_with_array : ( * core_1_0 ) . godot_pool_color_array_new_with_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_new_with_array" ) , godot_pool_color_array_append : ( * core_1_0 ) . godot_pool_color_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_append" ) , godot_pool_color_array_append_array : ( * core_1_0 ) . godot_pool_color_array_append_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_append_array" ) , godot_pool_color_array_insert : ( * core_1_0 ) . godot_pool_color_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_insert" ) , godot_pool_color_array_invert : ( * core_1_0 ) . godot_pool_color_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_invert" ) , godot_pool_color_array_push_back : ( * core_1_0 ) . godot_pool_color_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_push_back" ) , godot_pool_color_array_remove : ( * core_1_0 ) . godot_pool_color_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_remove" ) , godot_pool_color_array_resize : ( * core_1_0 ) . godot_pool_color_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_resize" ) , godot_pool_color_array_read : ( * core_1_0 ) . godot_pool_color_array_read . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_read" ) , godot_pool_color_array_write : ( * core_1_0 ) . godot_pool_color_array_write . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_write" ) , godot_pool_color_array_set : ( * core_1_0 ) . godot_pool_color_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_set" ) , godot_pool_color_array_get : ( * core_1_0 ) . godot_pool_color_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_get" ) , godot_pool_color_array_size : ( * core_1_0 ) . godot_pool_color_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_size" ) , godot_pool_color_array_destroy : ( * core_1_0 ) . godot_pool_color_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_destroy" ) , godot_pool_byte_array_read_access_copy : ( * core_1_0 ) . godot_pool_byte_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_read_access_copy" ) , godot_pool_byte_array_read_access_ptr : ( * core_1_0 ) . godot_pool_byte_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_read_access_ptr" ) , godot_pool_byte_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_byte_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_read_access_operator_assign" ) , godot_pool_byte_array_read_access_destroy : ( * core_1_0 ) . godot_pool_byte_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_read_access_destroy" ) , godot_pool_int_array_read_access_copy : ( * core_1_0 ) . godot_pool_int_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_read_access_copy" ) , godot_pool_int_array_read_access_ptr : ( * core_1_0 ) . godot_pool_int_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_read_access_ptr" ) , godot_pool_int_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_int_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_read_access_operator_assign" ) , godot_pool_int_array_read_access_destroy : ( * core_1_0 ) . godot_pool_int_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_read_access_destroy" ) , godot_pool_real_array_read_access_copy : ( * core_1_0 ) . godot_pool_real_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_read_access_copy" ) , godot_pool_real_array_read_access_ptr : ( * core_1_0 ) . godot_pool_real_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_read_access_ptr" ) , godot_pool_real_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_real_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_read_access_operator_assign" ) , godot_pool_real_array_read_access_destroy : ( * core_1_0 ) . godot_pool_real_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_read_access_destroy" ) , godot_pool_string_array_read_access_copy : ( * core_1_0 ) . godot_pool_string_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_read_access_copy" ) , godot_pool_string_array_read_access_ptr : ( * core_1_0 ) . godot_pool_string_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_read_access_ptr" ) , godot_pool_string_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_string_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_read_access_operator_assign" ) , godot_pool_string_array_read_access_destroy : ( * core_1_0 ) . godot_pool_string_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_read_access_destroy" ) , godot_pool_vector2_array_read_access_copy : ( * core_1_0 ) . godot_pool_vector2_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_read_access_copy" ) , godot_pool_vector2_array_read_access_ptr : ( * core_1_0 ) . godot_pool_vector2_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_read_access_ptr" ) , godot_pool_vector2_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_vector2_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_read_access_operator_assign" ) , godot_pool_vector2_array_read_access_destroy : ( * core_1_0 ) . godot_pool_vector2_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_read_access_destroy" ) , godot_pool_vector3_array_read_access_copy : ( * core_1_0 ) . godot_pool_vector3_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_read_access_copy" ) , godot_pool_vector3_array_read_access_ptr : ( * core_1_0 ) . godot_pool_vector3_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_read_access_ptr" ) , godot_pool_vector3_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_vector3_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_read_access_operator_assign" ) , godot_pool_vector3_array_read_access_destroy : ( * core_1_0 ) . godot_pool_vector3_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_read_access_destroy" ) , godot_pool_color_array_read_access_copy : ( * core_1_0 ) . godot_pool_color_array_read_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_read_access_copy" ) , godot_pool_color_array_read_access_ptr : ( * core_1_0 ) . godot_pool_color_array_read_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_read_access_ptr" ) , godot_pool_color_array_read_access_operator_assign : ( * core_1_0 ) . godot_pool_color_array_read_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_read_access_operator_assign" ) , godot_pool_color_array_read_access_destroy : ( * core_1_0 ) . godot_pool_color_array_read_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_read_access_destroy" ) , godot_pool_byte_array_write_access_copy : ( * core_1_0 ) . godot_pool_byte_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_write_access_copy" ) , godot_pool_byte_array_write_access_ptr : ( * core_1_0 ) . godot_pool_byte_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_write_access_ptr" ) , godot_pool_byte_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_byte_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_write_access_operator_assign" ) , godot_pool_byte_array_write_access_destroy : ( * core_1_0 ) . godot_pool_byte_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_byte_array_write_access_destroy" ) , godot_pool_int_array_write_access_copy : ( * core_1_0 ) . godot_pool_int_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_write_access_copy" ) , godot_pool_int_array_write_access_ptr : ( * core_1_0 ) . godot_pool_int_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_write_access_ptr" ) , godot_pool_int_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_int_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_write_access_operator_assign" ) , godot_pool_int_array_write_access_destroy : ( * core_1_0 ) . godot_pool_int_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_int_array_write_access_destroy" ) , godot_pool_real_array_write_access_copy : ( * core_1_0 ) . godot_pool_real_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_write_access_copy" ) , godot_pool_real_array_write_access_ptr : ( * core_1_0 ) . godot_pool_real_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_write_access_ptr" ) , godot_pool_real_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_real_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_write_access_operator_assign" ) , godot_pool_real_array_write_access_destroy : ( * core_1_0 ) . godot_pool_real_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_real_array_write_access_destroy" ) , godot_pool_string_array_write_access_copy : ( * core_1_0 ) . godot_pool_string_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_write_access_copy" ) , godot_pool_string_array_write_access_ptr : ( * core_1_0 ) . godot_pool_string_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_write_access_ptr" ) , godot_pool_string_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_string_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_write_access_operator_assign" ) , godot_pool_string_array_write_access_destroy : ( * core_1_0 ) . godot_pool_string_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_string_array_write_access_destroy" ) , godot_pool_vector2_array_write_access_copy : ( * core_1_0 ) . godot_pool_vector2_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_write_access_copy" ) , godot_pool_vector2_array_write_access_ptr : ( * core_1_0 ) . godot_pool_vector2_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_write_access_ptr" ) , godot_pool_vector2_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_vector2_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_write_access_operator_assign" ) , godot_pool_vector2_array_write_access_destroy : ( * core_1_0 ) . godot_pool_vector2_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector2_array_write_access_destroy" ) , godot_pool_vector3_array_write_access_copy : ( * core_1_0 ) . godot_pool_vector3_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_write_access_copy" ) , godot_pool_vector3_array_write_access_ptr : ( * core_1_0 ) . godot_pool_vector3_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_write_access_ptr" ) , godot_pool_vector3_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_vector3_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_write_access_operator_assign" ) , godot_pool_vector3_array_write_access_destroy : ( * core_1_0 ) . godot_pool_vector3_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_vector3_array_write_access_destroy" ) , godot_pool_color_array_write_access_copy : ( * core_1_0 ) . godot_pool_color_array_write_access_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_write_access_copy" ) , godot_pool_color_array_write_access_ptr : ( * core_1_0 ) . godot_pool_color_array_write_access_ptr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_write_access_ptr" ) , godot_pool_color_array_write_access_operator_assign : ( * core_1_0 ) . godot_pool_color_array_write_access_operator_assign . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_write_access_operator_assign" ) , godot_pool_color_array_write_access_destroy : ( * core_1_0 ) . godot_pool_color_array_write_access_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_pool_color_array_write_access_destroy" ) , godot_array_new : ( * core_1_0 ) . godot_array_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new" ) , godot_array_new_copy : ( * core_1_0 ) . godot_array_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_copy" ) , godot_array_new_pool_color_array : ( * core_1_0 ) . godot_array_new_pool_color_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_color_array" ) , godot_array_new_pool_vector3_array : ( * core_1_0 ) . godot_array_new_pool_vector3_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_vector3_array" ) , godot_array_new_pool_vector2_array : ( * core_1_0 ) . godot_array_new_pool_vector2_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_vector2_array" ) , godot_array_new_pool_string_array : ( * core_1_0 ) . godot_array_new_pool_string_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_string_array" ) , godot_array_new_pool_real_array : ( * core_1_0 ) . godot_array_new_pool_real_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_real_array" ) , godot_array_new_pool_int_array : ( * core_1_0 ) . godot_array_new_pool_int_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_int_array" ) , godot_array_new_pool_byte_array : ( * core_1_0 ) . godot_array_new_pool_byte_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_new_pool_byte_array" ) , godot_array_set : ( * core_1_0 ) . godot_array_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_set" ) , godot_array_get : ( * core_1_0 ) . godot_array_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_get" ) , godot_array_operator_index : ( * core_1_0 ) . godot_array_operator_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_operator_index" ) , godot_array_operator_index_const : ( * core_1_0 ) . godot_array_operator_index_const . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_operator_index_const" ) , godot_array_append : ( * core_1_0 ) . godot_array_append . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_append" ) , godot_array_clear : ( * core_1_0 ) . godot_array_clear . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_clear" ) , godot_array_count : ( * core_1_0 ) . godot_array_count . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_count" ) , godot_array_empty : ( * core_1_0 ) . godot_array_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_empty" ) , godot_array_erase : ( * core_1_0 ) . godot_array_erase . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_erase" ) , godot_array_front : ( * core_1_0 ) . godot_array_front . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_front" ) , godot_array_back : ( * core_1_0 ) . godot_array_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_back" ) , godot_array_find : ( * core_1_0 ) . godot_array_find . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_find" ) , godot_array_find_last : ( * core_1_0 ) . godot_array_find_last . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_find_last" ) , godot_array_has : ( * core_1_0 ) . godot_array_has . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_has" ) , godot_array_hash : ( * core_1_0 ) . godot_array_hash . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_hash" ) , godot_array_insert : ( * core_1_0 ) . godot_array_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_insert" ) , godot_array_invert : ( * core_1_0 ) . godot_array_invert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_invert" ) , godot_array_pop_back : ( * core_1_0 ) . godot_array_pop_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_pop_back" ) , godot_array_pop_front : ( * core_1_0 ) . godot_array_pop_front . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_pop_front" ) , godot_array_push_back : ( * core_1_0 ) . godot_array_push_back . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_push_back" ) , godot_array_push_front : ( * core_1_0 ) . godot_array_push_front . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_push_front" ) , godot_array_remove : ( * core_1_0 ) . godot_array_remove . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_remove" ) , godot_array_resize : ( * core_1_0 ) . godot_array_resize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_resize" ) , godot_array_rfind : ( * core_1_0 ) . godot_array_rfind . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_rfind" ) , godot_array_size : ( * core_1_0 ) . godot_array_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_size" ) , godot_array_sort : ( * core_1_0 ) . godot_array_sort . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_sort" ) , godot_array_sort_custom : ( * core_1_0 ) . godot_array_sort_custom . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_sort_custom" ) , godot_array_bsearch : ( * core_1_0 ) . godot_array_bsearch . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_bsearch" ) , godot_array_bsearch_custom : ( * core_1_0 ) . godot_array_bsearch_custom . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_bsearch_custom" ) , godot_array_destroy : ( * core_1_0 ) . godot_array_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_array_destroy" ) , godot_dictionary_new : ( * core_1_0 ) . godot_dictionary_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_new" ) , godot_dictionary_new_copy : ( * core_1_0 ) . godot_dictionary_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_new_copy" ) , godot_dictionary_destroy : ( * core_1_0 ) . godot_dictionary_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_destroy" ) , godot_dictionary_size : ( * core_1_0 ) . godot_dictionary_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_size" ) , godot_dictionary_empty : ( * core_1_0 ) . godot_dictionary_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_empty" ) , godot_dictionary_clear : ( * core_1_0 ) . godot_dictionary_clear . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_clear" ) , godot_dictionary_has : ( * core_1_0 ) . godot_dictionary_has . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_has" ) , godot_dictionary_has_all : ( * core_1_0 ) . godot_dictionary_has_all . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_has_all" ) , godot_dictionary_erase : ( * core_1_0 ) . godot_dictionary_erase . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_erase" ) , godot_dictionary_hash : ( * core_1_0 ) . godot_dictionary_hash . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_hash" ) , godot_dictionary_keys : ( * core_1_0 ) . godot_dictionary_keys . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_keys" ) , godot_dictionary_values : ( * core_1_0 ) . godot_dictionary_values . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_values" ) , godot_dictionary_get : ( * core_1_0 ) . godot_dictionary_get . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_get" ) , godot_dictionary_set : ( * core_1_0 ) . godot_dictionary_set . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_set" ) , godot_dictionary_operator_index : ( * core_1_0 ) . godot_dictionary_operator_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_operator_index" ) , godot_dictionary_operator_index_const : ( * core_1_0 ) . godot_dictionary_operator_index_const . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_operator_index_const" ) , godot_dictionary_next : ( * core_1_0 ) . godot_dictionary_next . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_next" ) , godot_dictionary_operator_equal : ( * core_1_0 ) . godot_dictionary_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_operator_equal" ) , godot_dictionary_to_json : ( * core_1_0 ) . godot_dictionary_to_json . expect ( "API function missing: godot_gdnative_core_api_struct.godot_dictionary_to_json" ) , godot_node_path_new : ( * core_1_0 ) . godot_node_path_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_new" ) , godot_node_path_new_copy : ( * core_1_0 ) . godot_node_path_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_new_copy" ) , godot_node_path_destroy : ( * core_1_0 ) . godot_node_path_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_destroy" ) , godot_node_path_as_string : ( * core_1_0 ) . godot_node_path_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_as_string" ) , godot_node_path_is_absolute : ( * core_1_0 ) . godot_node_path_is_absolute . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_is_absolute" ) , godot_node_path_get_name_count : ( * core_1_0 ) . godot_node_path_get_name_count . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_get_name_count" ) , godot_node_path_get_name : ( * core_1_0 ) . godot_node_path_get_name . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_get_name" ) , godot_node_path_get_subname_count : ( * core_1_0 ) . godot_node_path_get_subname_count . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_get_subname_count" ) , godot_node_path_get_subname : ( * core_1_0 ) . godot_node_path_get_subname . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_get_subname" ) , godot_node_path_get_concatenated_subnames : ( * core_1_0 ) . godot_node_path_get_concatenated_subnames . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_get_concatenated_subnames" ) , godot_node_path_is_empty : ( * core_1_0 ) . godot_node_path_is_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_is_empty" ) , godot_node_path_operator_equal : ( * core_1_0 ) . godot_node_path_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_node_path_operator_equal" ) , godot_plane_new_with_reals : ( * core_1_0 ) . godot_plane_new_with_reals . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_new_with_reals" ) , godot_plane_new_with_vectors : ( * core_1_0 ) . godot_plane_new_with_vectors . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_new_with_vectors" ) , godot_plane_new_with_normal : ( * core_1_0 ) . godot_plane_new_with_normal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_new_with_normal" ) , godot_plane_as_string : ( * core_1_0 ) . godot_plane_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_as_string" ) , godot_plane_normalized : ( * core_1_0 ) . godot_plane_normalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_normalized" ) , godot_plane_center : ( * core_1_0 ) . godot_plane_center . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_center" ) , godot_plane_get_any_point : ( * core_1_0 ) . godot_plane_get_any_point . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_get_any_point" ) , godot_plane_is_point_over : ( * core_1_0 ) . godot_plane_is_point_over . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_is_point_over" ) , godot_plane_distance_to : ( * core_1_0 ) . godot_plane_distance_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_distance_to" ) , godot_plane_has_point : ( * core_1_0 ) . godot_plane_has_point . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_has_point" ) , godot_plane_project : ( * core_1_0 ) . godot_plane_project . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_project" ) , godot_plane_intersect_3 : ( * core_1_0 ) . godot_plane_intersect_3 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_intersect_3" ) , godot_plane_intersects_ray : ( * core_1_0 ) . godot_plane_intersects_ray . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_intersects_ray" ) , godot_plane_intersects_segment : ( * core_1_0 ) . godot_plane_intersects_segment . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_intersects_segment" ) , godot_plane_operator_neg : ( * core_1_0 ) . godot_plane_operator_neg . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_operator_neg" ) , godot_plane_operator_equal : ( * core_1_0 ) . godot_plane_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_operator_equal" ) , godot_plane_set_normal : ( * core_1_0 ) . godot_plane_set_normal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_set_normal" ) , godot_plane_get_normal : ( * core_1_0 ) . godot_plane_get_normal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_get_normal" ) , godot_plane_get_d : ( * core_1_0 ) . godot_plane_get_d . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_get_d" ) , godot_plane_set_d : ( * core_1_0 ) . godot_plane_set_d . expect ( "API function missing: godot_gdnative_core_api_struct.godot_plane_set_d" ) , godot_rect2_new_with_position_and_size : ( * core_1_0 ) . godot_rect2_new_with_position_and_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_new_with_position_and_size" ) , godot_rect2_new : ( * core_1_0 ) . godot_rect2_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_new" ) , godot_rect2_as_string : ( * core_1_0 ) . godot_rect2_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_as_string" ) , godot_rect2_get_area : ( * core_1_0 ) . godot_rect2_get_area . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_get_area" ) , godot_rect2_intersects : ( * core_1_0 ) . godot_rect2_intersects . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_intersects" ) , godot_rect2_encloses : ( * core_1_0 ) . godot_rect2_encloses . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_encloses" ) , godot_rect2_has_no_area : ( * core_1_0 ) . godot_rect2_has_no_area . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_has_no_area" ) , godot_rect2_clip : ( * core_1_0 ) . godot_rect2_clip . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_clip" ) , godot_rect2_merge : ( * core_1_0 ) . godot_rect2_merge . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_merge" ) , godot_rect2_has_point : ( * core_1_0 ) . godot_rect2_has_point . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_has_point" ) , godot_rect2_grow : ( * core_1_0 ) . godot_rect2_grow . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_grow" ) , godot_rect2_expand : ( * core_1_0 ) . godot_rect2_expand . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_expand" ) , godot_rect2_operator_equal : ( * core_1_0 ) . godot_rect2_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_operator_equal" ) , godot_rect2_get_position : ( * core_1_0 ) . godot_rect2_get_position . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_get_position" ) , godot_rect2_get_size : ( * core_1_0 ) . godot_rect2_get_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_get_size" ) , godot_rect2_set_position : ( * core_1_0 ) . godot_rect2_set_position . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_set_position" ) , godot_rect2_set_size : ( * core_1_0 ) . godot_rect2_set_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rect2_set_size" ) , godot_aabb_new : ( * core_1_0 ) . godot_aabb_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_new" ) , godot_aabb_get_position : ( * core_1_0 ) . godot_aabb_get_position . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_position" ) , godot_aabb_set_position : ( * core_1_0 ) . godot_aabb_set_position . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_set_position" ) , godot_aabb_get_size : ( * core_1_0 ) . godot_aabb_get_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_size" ) , godot_aabb_set_size : ( * core_1_0 ) . godot_aabb_set_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_set_size" ) , godot_aabb_as_string : ( * core_1_0 ) . godot_aabb_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_as_string" ) , godot_aabb_get_area : ( * core_1_0 ) . godot_aabb_get_area . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_area" ) , godot_aabb_has_no_area : ( * core_1_0 ) . godot_aabb_has_no_area . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_has_no_area" ) , godot_aabb_has_no_surface : ( * core_1_0 ) . godot_aabb_has_no_surface . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_has_no_surface" ) , godot_aabb_intersects : ( * core_1_0 ) . godot_aabb_intersects . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_intersects" ) , godot_aabb_encloses : ( * core_1_0 ) . godot_aabb_encloses . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_encloses" ) , godot_aabb_merge : ( * core_1_0 ) . godot_aabb_merge . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_merge" ) , godot_aabb_intersection : ( * core_1_0 ) . godot_aabb_intersection . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_intersection" ) , godot_aabb_intersects_plane : ( * core_1_0 ) . godot_aabb_intersects_plane . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_intersects_plane" ) , godot_aabb_intersects_segment : ( * core_1_0 ) . godot_aabb_intersects_segment . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_intersects_segment" ) , godot_aabb_has_point : ( * core_1_0 ) . godot_aabb_has_point . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_has_point" ) , godot_aabb_get_support : ( * core_1_0 ) . godot_aabb_get_support . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_support" ) , godot_aabb_get_longest_axis : ( * core_1_0 ) . godot_aabb_get_longest_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_longest_axis" ) , godot_aabb_get_longest_axis_index : ( * core_1_0 ) . godot_aabb_get_longest_axis_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_longest_axis_index" ) , godot_aabb_get_longest_axis_size : ( * core_1_0 ) . godot_aabb_get_longest_axis_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_longest_axis_size" ) , godot_aabb_get_shortest_axis : ( * core_1_0 ) . godot_aabb_get_shortest_axis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_shortest_axis" ) , godot_aabb_get_shortest_axis_index : ( * core_1_0 ) . godot_aabb_get_shortest_axis_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_shortest_axis_index" ) , godot_aabb_get_shortest_axis_size : ( * core_1_0 ) . godot_aabb_get_shortest_axis_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_shortest_axis_size" ) , godot_aabb_expand : ( * core_1_0 ) . godot_aabb_expand . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_expand" ) , godot_aabb_grow : ( * core_1_0 ) . godot_aabb_grow . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_grow" ) , godot_aabb_get_endpoint : ( * core_1_0 ) . godot_aabb_get_endpoint . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_get_endpoint" ) , godot_aabb_operator_equal : ( * core_1_0 ) . godot_aabb_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_aabb_operator_equal" ) , godot_rid_new : ( * core_1_0 ) . godot_rid_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rid_new" ) , godot_rid_get_id : ( * core_1_0 ) . godot_rid_get_id . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rid_get_id" ) , godot_rid_new_with_resource : ( * core_1_0 ) . godot_rid_new_with_resource . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rid_new_with_resource" ) , godot_rid_operator_equal : ( * core_1_0 ) . godot_rid_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rid_operator_equal" ) , godot_rid_operator_less : ( * core_1_0 ) . godot_rid_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_rid_operator_less" ) , godot_transform_new_with_axis_origin : ( * core_1_0 ) . godot_transform_new_with_axis_origin . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_new_with_axis_origin" ) , godot_transform_new : ( * core_1_0 ) . godot_transform_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_new" ) , godot_transform_get_basis : ( * core_1_0 ) . godot_transform_get_basis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_get_basis" ) , godot_transform_set_basis : ( * core_1_0 ) . godot_transform_set_basis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_set_basis" ) , godot_transform_get_origin : ( * core_1_0 ) . godot_transform_get_origin . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_get_origin" ) , godot_transform_set_origin : ( * core_1_0 ) . godot_transform_set_origin . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_set_origin" ) , godot_transform_as_string : ( * core_1_0 ) . godot_transform_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_as_string" ) , godot_transform_inverse : ( * core_1_0 ) . godot_transform_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_inverse" ) , godot_transform_affine_inverse : ( * core_1_0 ) . godot_transform_affine_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_affine_inverse" ) , godot_transform_orthonormalized : ( * core_1_0 ) . godot_transform_orthonormalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_orthonormalized" ) , godot_transform_rotated : ( * core_1_0 ) . godot_transform_rotated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_rotated" ) , godot_transform_scaled : ( * core_1_0 ) . godot_transform_scaled . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_scaled" ) , godot_transform_translated : ( * core_1_0 ) . godot_transform_translated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_translated" ) , godot_transform_looking_at : ( * core_1_0 ) . godot_transform_looking_at . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_looking_at" ) , godot_transform_xform_plane : ( * core_1_0 ) . godot_transform_xform_plane . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_plane" ) , godot_transform_xform_inv_plane : ( * core_1_0 ) . godot_transform_xform_inv_plane . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_inv_plane" ) , godot_transform_new_identity : ( * core_1_0 ) . godot_transform_new_identity . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_new_identity" ) , godot_transform_operator_equal : ( * core_1_0 ) . godot_transform_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_operator_equal" ) , godot_transform_operator_multiply : ( * core_1_0 ) . godot_transform_operator_multiply . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_operator_multiply" ) , godot_transform_xform_vector3 : ( * core_1_0 ) . godot_transform_xform_vector3 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_vector3" ) , godot_transform_xform_inv_vector3 : ( * core_1_0 ) . godot_transform_xform_inv_vector3 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_inv_vector3" ) , godot_transform_xform_aabb : ( * core_1_0 ) . godot_transform_xform_aabb . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_aabb" ) , godot_transform_xform_inv_aabb : ( * core_1_0 ) . godot_transform_xform_inv_aabb . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform_xform_inv_aabb" ) , godot_transform2d_new : ( * core_1_0 ) . godot_transform2d_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_new" ) , godot_transform2d_new_axis_origin : ( * core_1_0 ) . godot_transform2d_new_axis_origin . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_new_axis_origin" ) , godot_transform2d_as_string : ( * core_1_0 ) . godot_transform2d_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_as_string" ) , godot_transform2d_inverse : ( * core_1_0 ) . godot_transform2d_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_inverse" ) , godot_transform2d_affine_inverse : ( * core_1_0 ) . godot_transform2d_affine_inverse . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_affine_inverse" ) , godot_transform2d_get_rotation : ( * core_1_0 ) . godot_transform2d_get_rotation . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_get_rotation" ) , godot_transform2d_get_origin : ( * core_1_0 ) . godot_transform2d_get_origin . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_get_origin" ) , godot_transform2d_get_scale : ( * core_1_0 ) . godot_transform2d_get_scale . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_get_scale" ) , godot_transform2d_orthonormalized : ( * core_1_0 ) . godot_transform2d_orthonormalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_orthonormalized" ) , godot_transform2d_rotated : ( * core_1_0 ) . godot_transform2d_rotated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_rotated" ) , godot_transform2d_scaled : ( * core_1_0 ) . godot_transform2d_scaled . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_scaled" ) , godot_transform2d_translated : ( * core_1_0 ) . godot_transform2d_translated . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_translated" ) , godot_transform2d_xform_vector2 : ( * core_1_0 ) . godot_transform2d_xform_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_xform_vector2" ) , godot_transform2d_xform_inv_vector2 : ( * core_1_0 ) . godot_transform2d_xform_inv_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_xform_inv_vector2" ) , godot_transform2d_basis_xform_vector2 : ( * core_1_0 ) . godot_transform2d_basis_xform_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_basis_xform_vector2" ) , godot_transform2d_basis_xform_inv_vector2 : ( * core_1_0 ) . godot_transform2d_basis_xform_inv_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_basis_xform_inv_vector2" ) , godot_transform2d_interpolate_with : ( * core_1_0 ) . godot_transform2d_interpolate_with . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_interpolate_with" ) , godot_transform2d_operator_equal : ( * core_1_0 ) . godot_transform2d_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_operator_equal" ) , godot_transform2d_operator_multiply : ( * core_1_0 ) . godot_transform2d_operator_multiply . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_operator_multiply" ) , godot_transform2d_new_identity : ( * core_1_0 ) . godot_transform2d_new_identity . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_new_identity" ) , godot_transform2d_xform_rect2 : ( * core_1_0 ) . godot_transform2d_xform_rect2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_xform_rect2" ) , godot_transform2d_xform_inv_rect2 : ( * core_1_0 ) . godot_transform2d_xform_inv_rect2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_transform2d_xform_inv_rect2" ) , godot_variant_get_type : ( * core_1_0 ) . godot_variant_get_type . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_get_type" ) , godot_variant_new_copy : ( * core_1_0 ) . godot_variant_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_copy" ) , godot_variant_new_nil : ( * core_1_0 ) . godot_variant_new_nil . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_nil" ) , godot_variant_new_bool : ( * core_1_0 ) . godot_variant_new_bool . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_bool" ) , godot_variant_new_uint : ( * core_1_0 ) . godot_variant_new_uint . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_uint" ) , godot_variant_new_int : ( * core_1_0 ) . godot_variant_new_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_int" ) , godot_variant_new_real : ( * core_1_0 ) . godot_variant_new_real . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_real" ) , godot_variant_new_string : ( * core_1_0 ) . godot_variant_new_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_string" ) , godot_variant_new_vector2 : ( * core_1_0 ) . godot_variant_new_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_vector2" ) , godot_variant_new_rect2 : ( * core_1_0 ) . godot_variant_new_rect2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_rect2" ) , godot_variant_new_vector3 : ( * core_1_0 ) . godot_variant_new_vector3 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_vector3" ) , godot_variant_new_transform2d : ( * core_1_0 ) . godot_variant_new_transform2d . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_transform2d" ) , godot_variant_new_plane : ( * core_1_0 ) . godot_variant_new_plane . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_plane" ) , godot_variant_new_quat : ( * core_1_0 ) . godot_variant_new_quat . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_quat" ) , godot_variant_new_aabb : ( * core_1_0 ) . godot_variant_new_aabb . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_aabb" ) , godot_variant_new_basis : ( * core_1_0 ) . godot_variant_new_basis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_basis" ) , godot_variant_new_transform : ( * core_1_0 ) . godot_variant_new_transform . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_transform" ) , godot_variant_new_color : ( * core_1_0 ) . godot_variant_new_color . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_color" ) , godot_variant_new_node_path : ( * core_1_0 ) . godot_variant_new_node_path . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_node_path" ) , godot_variant_new_rid : ( * core_1_0 ) . godot_variant_new_rid . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_rid" ) , godot_variant_new_object : ( * core_1_0 ) . godot_variant_new_object . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_object" ) , godot_variant_new_dictionary : ( * core_1_0 ) . godot_variant_new_dictionary . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_dictionary" ) , godot_variant_new_array : ( * core_1_0 ) . godot_variant_new_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_array" ) , godot_variant_new_pool_byte_array : ( * core_1_0 ) . godot_variant_new_pool_byte_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_byte_array" ) , godot_variant_new_pool_int_array : ( * core_1_0 ) . godot_variant_new_pool_int_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_int_array" ) , godot_variant_new_pool_real_array : ( * core_1_0 ) . godot_variant_new_pool_real_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_real_array" ) , godot_variant_new_pool_string_array : ( * core_1_0 ) . godot_variant_new_pool_string_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_string_array" ) , godot_variant_new_pool_vector2_array : ( * core_1_0 ) . godot_variant_new_pool_vector2_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_vector2_array" ) , godot_variant_new_pool_vector3_array : ( * core_1_0 ) . godot_variant_new_pool_vector3_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_vector3_array" ) , godot_variant_new_pool_color_array : ( * core_1_0 ) . godot_variant_new_pool_color_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_new_pool_color_array" ) , godot_variant_as_bool : ( * core_1_0 ) . godot_variant_as_bool . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_bool" ) , godot_variant_as_uint : ( * core_1_0 ) . godot_variant_as_uint . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_uint" ) , godot_variant_as_int : ( * core_1_0 ) . godot_variant_as_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_int" ) , godot_variant_as_real : ( * core_1_0 ) . godot_variant_as_real . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_real" ) , godot_variant_as_string : ( * core_1_0 ) . godot_variant_as_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_string" ) , godot_variant_as_vector2 : ( * core_1_0 ) . godot_variant_as_vector2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_vector2" ) , godot_variant_as_rect2 : ( * core_1_0 ) . godot_variant_as_rect2 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_rect2" ) , godot_variant_as_vector3 : ( * core_1_0 ) . godot_variant_as_vector3 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_vector3" ) , godot_variant_as_transform2d : ( * core_1_0 ) . godot_variant_as_transform2d . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_transform2d" ) , godot_variant_as_plane : ( * core_1_0 ) . godot_variant_as_plane . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_plane" ) , godot_variant_as_quat : ( * core_1_0 ) . godot_variant_as_quat . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_quat" ) , godot_variant_as_aabb : ( * core_1_0 ) . godot_variant_as_aabb . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_aabb" ) , godot_variant_as_basis : ( * core_1_0 ) . godot_variant_as_basis . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_basis" ) , godot_variant_as_transform : ( * core_1_0 ) . godot_variant_as_transform . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_transform" ) , godot_variant_as_color : ( * core_1_0 ) . godot_variant_as_color . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_color" ) , godot_variant_as_node_path : ( * core_1_0 ) . godot_variant_as_node_path . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_node_path" ) , godot_variant_as_rid : ( * core_1_0 ) . godot_variant_as_rid . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_rid" ) , godot_variant_as_object : ( * core_1_0 ) . godot_variant_as_object . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_object" ) , godot_variant_as_dictionary : ( * core_1_0 ) . godot_variant_as_dictionary . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_dictionary" ) , godot_variant_as_array : ( * core_1_0 ) . godot_variant_as_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_array" ) , godot_variant_as_pool_byte_array : ( * core_1_0 ) . godot_variant_as_pool_byte_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_byte_array" ) , godot_variant_as_pool_int_array : ( * core_1_0 ) . godot_variant_as_pool_int_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_int_array" ) , godot_variant_as_pool_real_array : ( * core_1_0 ) . godot_variant_as_pool_real_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_real_array" ) , godot_variant_as_pool_string_array : ( * core_1_0 ) . godot_variant_as_pool_string_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_string_array" ) , godot_variant_as_pool_vector2_array : ( * core_1_0 ) . godot_variant_as_pool_vector2_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_vector2_array" ) , godot_variant_as_pool_vector3_array : ( * core_1_0 ) . godot_variant_as_pool_vector3_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_vector3_array" ) , godot_variant_as_pool_color_array : ( * core_1_0 ) . godot_variant_as_pool_color_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_as_pool_color_array" ) , godot_variant_call : ( * core_1_0 ) . godot_variant_call . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_call" ) , godot_variant_has_method : ( * core_1_0 ) . godot_variant_has_method . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_has_method" ) , godot_variant_operator_equal : ( * core_1_0 ) . godot_variant_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_operator_equal" ) , godot_variant_operator_less : ( * core_1_0 ) . godot_variant_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_operator_less" ) , godot_variant_hash_compare : ( * core_1_0 ) . godot_variant_hash_compare . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_hash_compare" ) , godot_variant_booleanize : ( * core_1_0 ) . godot_variant_booleanize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_booleanize" ) , godot_variant_destroy : ( * core_1_0 ) . godot_variant_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_variant_destroy" ) , godot_char_string_length : ( * core_1_0 ) . godot_char_string_length . expect ( "API function missing: godot_gdnative_core_api_struct.godot_char_string_length" ) , godot_char_string_get_data : ( * core_1_0 ) . godot_char_string_get_data . expect ( "API function missing: godot_gdnative_core_api_struct.godot_char_string_get_data" ) , godot_char_string_destroy : ( * core_1_0 ) . godot_char_string_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_char_string_destroy" ) , godot_string_new : ( * core_1_0 ) . godot_string_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_new" ) , godot_string_new_copy : ( * core_1_0 ) . godot_string_new_copy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_new_copy" ) , godot_string_new_with_wide_string : ( * core_1_0 ) . godot_string_new_with_wide_string . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_new_with_wide_string" ) , godot_string_operator_index : ( * core_1_0 ) . godot_string_operator_index . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_operator_index" ) , godot_string_operator_index_const : ( * core_1_0 ) . godot_string_operator_index_const . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_operator_index_const" ) , godot_string_wide_str : ( * core_1_0 ) . godot_string_wide_str . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_wide_str" ) , godot_string_operator_equal : ( * core_1_0 ) . godot_string_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_operator_equal" ) , godot_string_operator_less : ( * core_1_0 ) . godot_string_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_operator_less" ) , godot_string_operator_plus : ( * core_1_0 ) . godot_string_operator_plus . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_operator_plus" ) , godot_string_length : ( * core_1_0 ) . godot_string_length . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_length" ) , godot_string_casecmp_to : ( * core_1_0 ) . godot_string_casecmp_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_casecmp_to" ) , godot_string_nocasecmp_to : ( * core_1_0 ) . godot_string_nocasecmp_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_nocasecmp_to" ) , godot_string_naturalnocasecmp_to : ( * core_1_0 ) . godot_string_naturalnocasecmp_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_naturalnocasecmp_to" ) , godot_string_begins_with : ( * core_1_0 ) . godot_string_begins_with . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_begins_with" ) , godot_string_begins_with_char_array : ( * core_1_0 ) . godot_string_begins_with_char_array . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_begins_with_char_array" ) , godot_string_bigrams : ( * core_1_0 ) . godot_string_bigrams . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_bigrams" ) , godot_string_chr : ( * core_1_0 ) . godot_string_chr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_chr" ) , godot_string_ends_with : ( * core_1_0 ) . godot_string_ends_with . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_ends_with" ) , godot_string_find : ( * core_1_0 ) . godot_string_find . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_find" ) , godot_string_find_from : ( * core_1_0 ) . godot_string_find_from . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_find_from" ) , godot_string_findmk : ( * core_1_0 ) . godot_string_findmk . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_findmk" ) , godot_string_findmk_from : ( * core_1_0 ) . godot_string_findmk_from . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_findmk_from" ) , godot_string_findmk_from_in_place : ( * core_1_0 ) . godot_string_findmk_from_in_place . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_findmk_from_in_place" ) , godot_string_findn : ( * core_1_0 ) . godot_string_findn . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_findn" ) , godot_string_findn_from : ( * core_1_0 ) . godot_string_findn_from . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_findn_from" ) , godot_string_find_last : ( * core_1_0 ) . godot_string_find_last . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_find_last" ) , godot_string_format : ( * core_1_0 ) . godot_string_format . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_format" ) , godot_string_format_with_custom_placeholder : ( * core_1_0 ) . godot_string_format_with_custom_placeholder . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_format_with_custom_placeholder" ) , godot_string_hex_encode_buffer : ( * core_1_0 ) . godot_string_hex_encode_buffer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hex_encode_buffer" ) , godot_string_hex_to_int : ( * core_1_0 ) . godot_string_hex_to_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hex_to_int" ) , godot_string_hex_to_int_without_prefix : ( * core_1_0 ) . godot_string_hex_to_int_without_prefix . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hex_to_int_without_prefix" ) , godot_string_insert : ( * core_1_0 ) . godot_string_insert . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_insert" ) , godot_string_is_numeric : ( * core_1_0 ) . godot_string_is_numeric . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_numeric" ) , godot_string_is_subsequence_of : ( * core_1_0 ) . godot_string_is_subsequence_of . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_subsequence_of" ) , godot_string_is_subsequence_ofi : ( * core_1_0 ) . godot_string_is_subsequence_ofi . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_subsequence_ofi" ) , godot_string_lpad : ( * core_1_0 ) . godot_string_lpad . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_lpad" ) , godot_string_lpad_with_custom_character : ( * core_1_0 ) . godot_string_lpad_with_custom_character . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_lpad_with_custom_character" ) , godot_string_match : ( * core_1_0 ) . godot_string_match . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_match" ) , godot_string_matchn : ( * core_1_0 ) . godot_string_matchn . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_matchn" ) , godot_string_md5 : ( * core_1_0 ) . godot_string_md5 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_md5" ) , godot_string_num : ( * core_1_0 ) . godot_string_num . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num" ) , godot_string_num_int64 : ( * core_1_0 ) . godot_string_num_int64 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num_int64" ) , godot_string_num_int64_capitalized : ( * core_1_0 ) . godot_string_num_int64_capitalized . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num_int64_capitalized" ) , godot_string_num_real : ( * core_1_0 ) . godot_string_num_real . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num_real" ) , godot_string_num_scientific : ( * core_1_0 ) . godot_string_num_scientific . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num_scientific" ) , godot_string_num_with_decimals : ( * core_1_0 ) . godot_string_num_with_decimals . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_num_with_decimals" ) , godot_string_pad_decimals : ( * core_1_0 ) . godot_string_pad_decimals . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_pad_decimals" ) , godot_string_pad_zeros : ( * core_1_0 ) . godot_string_pad_zeros . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_pad_zeros" ) , godot_string_replace_first : ( * core_1_0 ) . godot_string_replace_first . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_replace_first" ) , godot_string_replace : ( * core_1_0 ) . godot_string_replace . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_replace" ) , godot_string_replacen : ( * core_1_0 ) . godot_string_replacen . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_replacen" ) , godot_string_rfind : ( * core_1_0 ) . godot_string_rfind . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rfind" ) , godot_string_rfindn : ( * core_1_0 ) . godot_string_rfindn . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rfindn" ) , godot_string_rfind_from : ( * core_1_0 ) . godot_string_rfind_from . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rfind_from" ) , godot_string_rfindn_from : ( * core_1_0 ) . godot_string_rfindn_from . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rfindn_from" ) , godot_string_rpad : ( * core_1_0 ) . godot_string_rpad . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rpad" ) , godot_string_rpad_with_custom_character : ( * core_1_0 ) . godot_string_rpad_with_custom_character . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_rpad_with_custom_character" ) , godot_string_similarity : ( * core_1_0 ) . godot_string_similarity . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_similarity" ) , godot_string_sprintf : ( * core_1_0 ) . godot_string_sprintf . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_sprintf" ) , godot_string_substr : ( * core_1_0 ) . godot_string_substr . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_substr" ) , godot_string_to_double : ( * core_1_0 ) . godot_string_to_double . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_double" ) , godot_string_to_float : ( * core_1_0 ) . godot_string_to_float . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_float" ) , godot_string_to_int : ( * core_1_0 ) . godot_string_to_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_int" ) , godot_string_camelcase_to_underscore : ( * core_1_0 ) . godot_string_camelcase_to_underscore . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_camelcase_to_underscore" ) , godot_string_camelcase_to_underscore_lowercased : ( * core_1_0 ) . godot_string_camelcase_to_underscore_lowercased . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_camelcase_to_underscore_lowercased" ) , godot_string_capitalize : ( * core_1_0 ) . godot_string_capitalize . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_capitalize" ) , godot_string_char_to_double : ( * core_1_0 ) . godot_string_char_to_double . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_to_double" ) , godot_string_char_to_int : ( * core_1_0 ) . godot_string_char_to_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_to_int" ) , godot_string_wchar_to_int : ( * core_1_0 ) . godot_string_wchar_to_int . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_wchar_to_int" ) , godot_string_char_to_int_with_len : ( * core_1_0 ) . godot_string_char_to_int_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_to_int_with_len" ) , godot_string_char_to_int64_with_len : ( * core_1_0 ) . godot_string_char_to_int64_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_to_int64_with_len" ) , godot_string_hex_to_int64 : ( * core_1_0 ) . godot_string_hex_to_int64 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hex_to_int64" ) , godot_string_hex_to_int64_with_prefix : ( * core_1_0 ) . godot_string_hex_to_int64_with_prefix . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hex_to_int64_with_prefix" ) , godot_string_to_int64 : ( * core_1_0 ) . godot_string_to_int64 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_int64" ) , godot_string_unicode_char_to_double : ( * core_1_0 ) . godot_string_unicode_char_to_double . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_unicode_char_to_double" ) , godot_string_get_slice_count : ( * core_1_0 ) . godot_string_get_slice_count . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_slice_count" ) , godot_string_get_slice : ( * core_1_0 ) . godot_string_get_slice . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_slice" ) , godot_string_get_slicec : ( * core_1_0 ) . godot_string_get_slicec . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_slicec" ) , godot_string_split : ( * core_1_0 ) . godot_string_split . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split" ) , godot_string_split_allow_empty : ( * core_1_0 ) . godot_string_split_allow_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_allow_empty" ) , godot_string_split_floats : ( * core_1_0 ) . godot_string_split_floats . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_floats" ) , godot_string_split_floats_allows_empty : ( * core_1_0 ) . godot_string_split_floats_allows_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_floats_allows_empty" ) , godot_string_split_floats_mk : ( * core_1_0 ) . godot_string_split_floats_mk . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_floats_mk" ) , godot_string_split_floats_mk_allows_empty : ( * core_1_0 ) . godot_string_split_floats_mk_allows_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_floats_mk_allows_empty" ) , godot_string_split_ints : ( * core_1_0 ) . godot_string_split_ints . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_ints" ) , godot_string_split_ints_allows_empty : ( * core_1_0 ) . godot_string_split_ints_allows_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_ints_allows_empty" ) , godot_string_split_ints_mk : ( * core_1_0 ) . godot_string_split_ints_mk . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_ints_mk" ) , godot_string_split_ints_mk_allows_empty : ( * core_1_0 ) . godot_string_split_ints_mk_allows_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_ints_mk_allows_empty" ) , godot_string_split_spaces : ( * core_1_0 ) . godot_string_split_spaces . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_split_spaces" ) , godot_string_char_lowercase : ( * core_1_0 ) . godot_string_char_lowercase . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_lowercase" ) , godot_string_char_uppercase : ( * core_1_0 ) . godot_string_char_uppercase . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_char_uppercase" ) , godot_string_to_lower : ( * core_1_0 ) . godot_string_to_lower . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_lower" ) , godot_string_to_upper : ( * core_1_0 ) . godot_string_to_upper . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_to_upper" ) , godot_string_get_basename : ( * core_1_0 ) . godot_string_get_basename . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_basename" ) , godot_string_get_extension : ( * core_1_0 ) . godot_string_get_extension . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_extension" ) , godot_string_left : ( * core_1_0 ) . godot_string_left . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_left" ) , godot_string_ord_at : ( * core_1_0 ) . godot_string_ord_at . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_ord_at" ) , godot_string_plus_file : ( * core_1_0 ) . godot_string_plus_file . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_plus_file" ) , godot_string_right : ( * core_1_0 ) . godot_string_right . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_right" ) , godot_string_strip_edges : ( * core_1_0 ) . godot_string_strip_edges . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_strip_edges" ) , godot_string_strip_escapes : ( * core_1_0 ) . godot_string_strip_escapes . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_strip_escapes" ) , godot_string_erase : ( * core_1_0 ) . godot_string_erase . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_erase" ) , godot_string_ascii : ( * core_1_0 ) . godot_string_ascii . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_ascii" ) , godot_string_ascii_extended : ( * core_1_0 ) . godot_string_ascii_extended . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_ascii_extended" ) , godot_string_utf8 : ( * core_1_0 ) . godot_string_utf8 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_utf8" ) , godot_string_parse_utf8 : ( * core_1_0 ) . godot_string_parse_utf8 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_parse_utf8" ) , godot_string_parse_utf8_with_len : ( * core_1_0 ) . godot_string_parse_utf8_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_parse_utf8_with_len" ) , godot_string_chars_to_utf8 : ( * core_1_0 ) . godot_string_chars_to_utf8 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_chars_to_utf8" ) , godot_string_chars_to_utf8_with_len : ( * core_1_0 ) . godot_string_chars_to_utf8_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_chars_to_utf8_with_len" ) , godot_string_hash : ( * core_1_0 ) . godot_string_hash . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash" ) , godot_string_hash64 : ( * core_1_0 ) . godot_string_hash64 . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash64" ) , godot_string_hash_chars : ( * core_1_0 ) . godot_string_hash_chars . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash_chars" ) , godot_string_hash_chars_with_len : ( * core_1_0 ) . godot_string_hash_chars_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash_chars_with_len" ) , godot_string_hash_utf8_chars : ( * core_1_0 ) . godot_string_hash_utf8_chars . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash_utf8_chars" ) , godot_string_hash_utf8_chars_with_len : ( * core_1_0 ) . godot_string_hash_utf8_chars_with_len . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_hash_utf8_chars_with_len" ) , godot_string_md5_buffer : ( * core_1_0 ) . godot_string_md5_buffer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_md5_buffer" ) , godot_string_md5_text : ( * core_1_0 ) . godot_string_md5_text . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_md5_text" ) , godot_string_sha256_buffer : ( * core_1_0 ) . godot_string_sha256_buffer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_sha256_buffer" ) , godot_string_sha256_text : ( * core_1_0 ) . godot_string_sha256_text . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_sha256_text" ) , godot_string_empty : ( * core_1_0 ) . godot_string_empty . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_empty" ) , godot_string_get_base_dir : ( * core_1_0 ) . godot_string_get_base_dir . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_base_dir" ) , godot_string_get_file : ( * core_1_0 ) . godot_string_get_file . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_get_file" ) , godot_string_humanize_size : ( * core_1_0 ) . godot_string_humanize_size . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_humanize_size" ) , godot_string_is_abs_path : ( * core_1_0 ) . godot_string_is_abs_path . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_abs_path" ) , godot_string_is_rel_path : ( * core_1_0 ) . godot_string_is_rel_path . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_rel_path" ) , godot_string_is_resource_file : ( * core_1_0 ) . godot_string_is_resource_file . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_resource_file" ) , godot_string_path_to : ( * core_1_0 ) . godot_string_path_to . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_path_to" ) , godot_string_path_to_file : ( * core_1_0 ) . godot_string_path_to_file . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_path_to_file" ) , godot_string_simplify_path : ( * core_1_0 ) . godot_string_simplify_path . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_simplify_path" ) , godot_string_c_escape : ( * core_1_0 ) . godot_string_c_escape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_c_escape" ) , godot_string_c_escape_multiline : ( * core_1_0 ) . godot_string_c_escape_multiline . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_c_escape_multiline" ) , godot_string_c_unescape : ( * core_1_0 ) . godot_string_c_unescape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_c_unescape" ) , godot_string_http_escape : ( * core_1_0 ) . godot_string_http_escape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_http_escape" ) , godot_string_http_unescape : ( * core_1_0 ) . godot_string_http_unescape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_http_unescape" ) , godot_string_json_escape : ( * core_1_0 ) . godot_string_json_escape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_json_escape" ) , godot_string_word_wrap : ( * core_1_0 ) . godot_string_word_wrap . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_word_wrap" ) , godot_string_xml_escape : ( * core_1_0 ) . godot_string_xml_escape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_xml_escape" ) , godot_string_xml_escape_with_quotes : ( * core_1_0 ) . godot_string_xml_escape_with_quotes . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_xml_escape_with_quotes" ) , godot_string_xml_unescape : ( * core_1_0 ) . godot_string_xml_unescape . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_xml_unescape" ) , godot_string_percent_decode : ( * core_1_0 ) . godot_string_percent_decode . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_percent_decode" ) , godot_string_percent_encode : ( * core_1_0 ) . godot_string_percent_encode . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_percent_encode" ) , godot_string_is_valid_float : ( * core_1_0 ) . godot_string_is_valid_float . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_float" ) , godot_string_is_valid_hex_number : ( * core_1_0 ) . godot_string_is_valid_hex_number . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_hex_number" ) , godot_string_is_valid_html_color : ( * core_1_0 ) . godot_string_is_valid_html_color . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_html_color" ) , godot_string_is_valid_identifier : ( * core_1_0 ) . godot_string_is_valid_identifier . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_identifier" ) , godot_string_is_valid_integer : ( * core_1_0 ) . godot_string_is_valid_integer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_integer" ) , godot_string_is_valid_ip_address : ( * core_1_0 ) . godot_string_is_valid_ip_address . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_is_valid_ip_address" ) , godot_string_destroy : ( * core_1_0 ) . godot_string_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_destroy" ) , godot_string_name_new : ( * core_1_0 ) . godot_string_name_new . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_new" ) , godot_string_name_new_data : ( * core_1_0 ) . godot_string_name_new_data . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_new_data" ) , godot_string_name_get_name : ( * core_1_0 ) . godot_string_name_get_name . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_get_name" ) , godot_string_name_get_hash : ( * core_1_0 ) . godot_string_name_get_hash . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_get_hash" ) , godot_string_name_get_data_unique_pointer : ( * core_1_0 ) . godot_string_name_get_data_unique_pointer . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_get_data_unique_pointer" ) , godot_string_name_operator_equal : ( * core_1_0 ) . godot_string_name_operator_equal . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_operator_equal" ) , godot_string_name_operator_less : ( * core_1_0 ) . godot_string_name_operator_less . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_operator_less" ) , godot_string_name_destroy : ( * core_1_0 ) . godot_string_name_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_string_name_destroy" ) , godot_object_destroy : ( * core_1_0 ) . godot_object_destroy . expect ( "API function missing: godot_gdnative_core_api_struct.godot_object_destroy" ) , godot_global_get_singleton : ( * core_1_0 ) . godot_global_get_singleton . expect ( "API function missing: godot_gdnative_core_api_struct.godot_global_get_singleton" ) , godot_method_bind_get_method : ( * core_1_0 ) . godot_method_bind_get_method . expect ( "API function missing: godot_gdnative_core_api_struct.godot_method_bind_get_method" ) , godot_method_bind_ptrcall : ( * core_1_0 ) . godot_method_bind_ptrcall . expect ( "API function missing: godot_gdnative_core_api_struct.godot_method_bind_ptrcall" ) , godot_method_bind_call : ( * core_1_0 ) . godot_method_bind_call . expect ( "API function missing: godot_gdnative_core_api_struct.godot_method_bind_call" ) , godot_get_class_constructor : ( * core_1_0 ) . godot_get_class_constructor . expect ( "API function missing: godot_gdnative_core_api_struct.godot_get_class_constructor" ) , godot_get_global_constants : ( * core_1_0 ) . godot_get_global_constants . expect ( "API function missing: godot_gdnative_core_api_struct.godot_get_global_constants" ) , godot_register_native_call_type : ( * core_1_0 ) . godot_register_native_call_type . expect ( "API function missing: godot_gdnative_core_api_struct.godot_register_native_call_type" ) , godot_alloc : ( * core_1_0 ) . godot_alloc . expect ( "API function missing: godot_gdnative_core_api_struct.godot_alloc" ) , godot_realloc : ( * core_1_0 ) . godot_realloc . expect ( "API function missing: godot_gdnative_core_api_struct.godot_realloc" ) , godot_free : ( * core_1_0 ) . godot_free . expect ( "API function missing: godot_gdnative_core_api_struct.godot_free" ) , godot_print_error : ( * core_1_0 ) . godot_print_error . expect ( "API function missing: godot_gdnative_core_api_struct.godot_print_error" ) , godot_print_warning : ( * core_1_0 ) . godot_print_warning . expect ( "API function missing: godot_gdnative_core_api_struct.godot_print_warning" ) , godot_print : ( * core_1_0 ) . godot_print . expect ( "API function missing: godot_gdnative_core_api_struct.godot_print" ) , godot_color_to_abgr32 : ( * core_1_1 ) . godot_color_to_abgr32 . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_to_abgr32" ) , godot_color_to_abgr64 : ( * core_1_1 ) . godot_color_to_abgr64 . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_to_abgr64" ) , godot_color_to_argb64 : ( * core_1_1 ) . godot_color_to_argb64 . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_to_argb64" ) , godot_color_to_rgba64 : ( * core_1_1 ) . godot_color_to_rgba64 . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_to_rgba64" ) , godot_color_darkened : ( * core_1_1 ) . godot_color_darkened . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_darkened" ) , godot_color_from_hsv : ( * core_1_1 ) . godot_color_from_hsv . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_from_hsv" ) , godot_color_lightened : ( * core_1_1 ) . godot_color_lightened . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_color_lightened" ) , godot_array_duplicate : ( * core_1_1 ) . godot_array_duplicate . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_array_duplicate" ) , godot_array_max : ( * core_1_1 ) . godot_array_max . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_array_max" ) , godot_array_min : ( * core_1_1 ) . godot_array_min . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_array_min" ) , godot_array_shuffle : ( * core_1_1 ) . godot_array_shuffle . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_array_shuffle" ) , godot_basis_slerp : ( * core_1_1 ) . godot_basis_slerp . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_slerp" ) , godot_dictionary_get_with_default : ( * core_1_1 ) . godot_dictionary_get_with_default . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_dictionary_get_with_default" ) , godot_dictionary_erase_with_return : ( * core_1_1 ) . godot_dictionary_erase_with_return . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_dictionary_erase_with_return" ) , godot_node_path_get_as_property_path : ( * core_1_1 ) . godot_node_path_get_as_property_path . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_node_path_get_as_property_path" ) , godot_quat_set_axis_angle : ( * core_1_1 ) . godot_quat_set_axis_angle . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_quat_set_axis_angle" ) , godot_rect2_grow_individual : ( * core_1_1 ) . godot_rect2_grow_individual . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_rect2_grow_individual" ) , godot_rect2_grow_margin : ( * core_1_1 ) . godot_rect2_grow_margin . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_rect2_grow_margin" ) , godot_rect2_abs : ( * core_1_1 ) . godot_rect2_abs . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_rect2_abs" ) , godot_string_dedent : ( * core_1_1 ) . godot_string_dedent . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_string_dedent" ) , godot_string_trim_prefix : ( * core_1_1 ) . godot_string_trim_prefix . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_string_trim_prefix" ) , godot_string_trim_suffix : ( * core_1_1 ) . godot_string_trim_suffix . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_string_trim_suffix" ) , godot_string_rstrip : ( * core_1_1 ) . godot_string_rstrip . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_string_rstrip" ) , godot_string_rsplit : ( * core_1_1 ) . godot_string_rsplit . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_string_rsplit" ) , godot_basis_get_quat : ( * core_1_1 ) . godot_basis_get_quat . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_get_quat" ) , godot_basis_set_quat : ( * core_1_1 ) . godot_basis_set_quat . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_set_quat" ) , godot_basis_set_axis_angle_scale : ( * core_1_1 ) . godot_basis_set_axis_angle_scale . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_set_axis_angle_scale" ) , godot_basis_set_euler_scale : ( * core_1_1 ) . godot_basis_set_euler_scale . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_set_euler_scale" ) , godot_basis_set_quat_scale : ( * core_1_1 ) . godot_basis_set_quat_scale . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_basis_set_quat_scale" ) , godot_is_instance_valid : ( * core_1_1 ) . godot_is_instance_valid . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_is_instance_valid" ) , godot_quat_new_with_basis : ( * core_1_1 ) . godot_quat_new_with_basis . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_quat_new_with_basis" ) , godot_quat_new_with_euler : ( * core_1_1 ) . godot_quat_new_with_euler . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_quat_new_with_euler" ) , godot_transform_new_with_quat : ( * core_1_1 ) . godot_transform_new_with_quat . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_transform_new_with_quat" ) , godot_variant_get_operator_name : ( * core_1_1 ) . godot_variant_get_operator_name . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_variant_get_operator_name" ) , godot_variant_evaluate : ( * core_1_1 ) . godot_variant_evaluate . expect ( "API function missing: godot_gdnative_core_1_1_api_struct.godot_variant_evaluate" ) , godot_nativescript_register_class : ( * nativescript_1_0 ) . godot_nativescript_register_class . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_register_class" ) , godot_nativescript_register_tool_class : ( * nativescript_1_0 ) . godot_nativescript_register_tool_class . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_register_tool_class" ) , godot_nativescript_register_method : ( * nativescript_1_0 ) . godot_nativescript_register_method . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_register_method" ) , godot_nativescript_register_property : ( * nativescript_1_0 ) . godot_nativescript_register_property . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_register_property" ) , godot_nativescript_register_signal : ( * nativescript_1_0 ) . godot_nativescript_register_signal . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_register_signal" ) , godot_nativescript_get_userdata : ( * nativescript_1_0 ) . godot_nativescript_get_userdata . expect ( "API function missing: godot_gdnative_ext_nativescript_api_struct.godot_nativescript_get_userdata" ) , godot_nativescript_set_method_argument_information : ( * nativescript_1_1 ) . godot_nativescript_set_method_argument_information . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_method_argument_information" ) , godot_nativescript_set_class_documentation : ( * nativescript_1_1 ) . godot_nativescript_set_class_documentation . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_class_documentation" ) , godot_nativescript_set_method_documentation : ( * nativescript_1_1 ) . godot_nativescript_set_method_documentation . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_method_documentation" ) , godot_nativescript_set_property_documentation : ( * nativescript_1_1 ) . godot_nativescript_set_property_documentation . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_property_documentation" ) , godot_nativescript_set_signal_documentation : ( * nativescript_1_1 ) . godot_nativescript_set_signal_documentation . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_signal_documentation" ) , godot_nativescript_set_global_type_tag : ( * nativescript_1_1 ) . godot_nativescript_set_global_type_tag . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_global_type_tag" ) , godot_nativescript_get_global_type_tag : ( * nativescript_1_1 ) . godot_nativescript_get_global_type_tag . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_get_global_type_tag" ) , godot_nativescript_set_type_tag : ( * nativescript_1_1 ) . godot_nativescript_set_type_tag . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_set_type_tag" ) , godot_nativescript_get_type_tag : ( * nativescript_1_1 ) . godot_nativescript_get_type_tag . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_get_type_tag" ) , godot_nativescript_register_instance_binding_data_functions : ( * nativescript_1_1 ) . godot_nativescript_register_instance_binding_data_functions . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_register_instance_binding_data_functions" ) , godot_nativescript_unregister_instance_binding_data_functions : ( * nativescript_1_1 ) . godot_nativescript_unregister_instance_binding_data_functions . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_unregister_instance_binding_data_functions" ) , godot_nativescript_get_instance_binding_data : ( * nativescript_1_1 ) . godot_nativescript_get_instance_binding_data . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_get_instance_binding_data" ) , godot_nativescript_profiling_add_data : ( * nativescript_1_1 ) . godot_nativescript_profiling_add_data . expect ( "API function missing: godot_gdnative_ext_nativescript_1_1_api_struct.godot_nativescript_profiling_add_data" ) , godot_pluginscript_register_language : ( * pluginscript_1_0 ) . godot_pluginscript_register_language . expect ( "API function missing: godot_gdnative_ext_pluginscript_api_struct.godot_pluginscript_register_language" ) , godot_arvr_register_interface : ( * arvr_1_1 ) . godot_arvr_register_interface . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_register_interface" ) , godot_arvr_get_worldscale : ( * arvr_1_1 ) . godot_arvr_get_worldscale . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_get_worldscale" ) , godot_arvr_get_reference_frame : ( * arvr_1_1 ) . godot_arvr_get_reference_frame . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_get_reference_frame" ) , godot_arvr_blit : ( * arvr_1_1 ) . godot_arvr_blit . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_blit" ) , godot_arvr_get_texid : ( * arvr_1_1 ) . godot_arvr_get_texid . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_get_texid" ) , godot_arvr_add_controller : ( * arvr_1_1 ) . godot_arvr_add_controller . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_add_controller" ) , godot_arvr_remove_controller : ( * arvr_1_1 ) . godot_arvr_remove_controller . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_remove_controller" ) , godot_arvr_set_controller_transform : ( * arvr_1_1 ) . godot_arvr_set_controller_transform . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_set_controller_transform" ) , godot_arvr_set_controller_button : ( * arvr_1_1 ) . godot_arvr_set_controller_button . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_set_controller_button" ) , godot_arvr_set_controller_axis : ( * arvr_1_1 ) . godot_arvr_set_controller_axis . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_set_controller_axis" ) , godot_arvr_get_controller_rumble : ( * arvr_1_1 ) . godot_arvr_get_controller_rumble . expect ( "API function missing: godot_gdnative_ext_arvr_api_struct.godot_arvr_get_controller_rumble" ) , godot_videodecoder_file_read : ( * videodecoder_0_1 ) . godot_videodecoder_file_read . expect ( "API function missing: godot_gdnative_ext_videodecoder_api_struct.godot_videodecoder_file_read" ) , godot_videodecoder_file_seek : ( * videodecoder_0_1 ) . godot_videodecoder_file_seek . expect ( "API function missing: godot_gdnative_ext_videodecoder_api_struct.godot_videodecoder_file_seek" ) , godot_videodecoder_register_decoder : ( * videodecoder_0_1 ) . godot_videodecoder_register_decoder . expect ( "API function missing: godot_gdnative_ext_videodecoder_api_struct.godot_videodecoder_register_decoder" ) , godot_net_bind_stream_peer : ( * net_3_1 ) . godot_net_bind_stream_peer . expect ( "API function missing: godot_gdnative_ext_net_api_struct.godot_net_bind_stream_peer" ) , godot_net_bind_packet_peer : ( * net_3_1 ) . godot_net_bind_packet_peer . expect ( "API function missing: godot_gdnative_ext_net_api_struct.godot_net_bind_packet_peer" ) , godot_net_bind_multiplayer_peer : ( * net_3_1 ) . godot_net_bind_multiplayer_peer . expect ( "API function missing: godot_gdnative_ext_net_api_struct.godot_net_bind_multiplayer_peer" ) , } } }