RTempAlloc<T extends NativeType> constructor

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

Implementation

RTempAlloc(RaylibTemp temp, this.name, {
  required this.allocatorFunc,
  required this.printerFunc,
}) : _temp = temp;