native_structs.h 246 B

1234567891011121314151617
  1. #ifndef native_structs_h
  2. #define native_structs_h
  3. #include <stdint.h>
  4. typedef struct {
  5. float x;
  6. float y;
  7. } Coordinate;
  8. typedef struct {
  9. Coordinate* coordsPtr;
  10. uint32_t length;
  11. } CoordinateArray;
  12. #endif /* native_structs_h */