#ifndef native_structs_h #define native_structs_h #include typedef struct { float x; float y; } Coordinate; typedef struct { Coordinate* coordsPtr; uint32_t length; } CoordinateArray; #endif /* native_structs_h */