1234567891011121314151617 |
- #ifndef native_structs_h
- #define native_structs_h
- #include <stdint.h>
- typedef struct {
- float x;
- float y;
- } Coordinate;
- typedef struct {
- Coordinate* coordsPtr;
- uint32_t length;
- } CoordinateArray;
- #endif /* native_structs_h */
|