load method
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();
}