blob: 88e9317f72ac07cbe10745176fdfe14689038e50 [file] [log] [blame]
import "package:ffi/ffi.dart";
import 'dart:ffi';
class Coordinate extends Struct {
external Pointer<Coordinate> next;
@Double()
external double x;
@Double()
external double y;
factory Coordinate.allocate(
Allocator allocator, double x, double y, Pointer<Coordinate> next) {}
}
main() {}