util.h 281 B

12345678910
  1. #include <gdnative/gdnative.h>
  2. #include <stdlib.h>
  3. #ifndef CHELPER_H
  4. #define CHELPER_H
  5. godot_gdnative_api_struct *cgo_get_ext(godot_gdnative_api_struct **ext, int i);
  6. void **go_void_build_array(int length);
  7. void go_void_add_element(void **array, void *element, int index);
  8. #endif