RTempLitPtrAlloc<X, T extends NativeType> constructor

RTempLitPtrAlloc<X, T extends NativeType>(
  1. RaylibTemp temp,
  2. String name, {
  3. required Pointer<Pointer<T>> allocatorFunc([
    1. int count
    ]),
  4. required String printerFunc(
    1. Pointer<Pointer<T>> ptr
    ),
  5. required Pointer<T> rawArrayFunc(
    1. List<X> array
    ),
})

Implementation

RTempLitPtrAlloc(super.temp, super.name, {
  required super.allocatorFunc,
  required super.printerFunc,
  required this.rawArrayFunc,
});