load method

  1. @override
  2. @mustCallSuper
void load()
override

Override to perform one-time module initialization.

Implementation

@override
@mustCallSuper
void load() {
  if (RaylibConfig.tempStringSlots > 0) {
    logInfo('[TEMP] Allocating ${RaylibConfig.tempStringSlots} String slots');
  }

  Utils = .new(this);

  _initSpecialAllocators();
  _initScalarAllocators();
  _initStructAllocators();
  _initOptionalStructAllocators();
}