MakeDirectory method
Create directories (including full path requested), returns 0 on success
Implementation
@override
int MakeDirectory(
String dirPath,
) => run(
() => RaylibDebugLabels.MakeDirectory(dirPath),
() => rl.Core.MakeDirectory(
rl.Temp.String$.ValueOrNull(dirPath),
),
);