11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
const root = window.PixelIslandModules ||= {};
|
|
|
|
root.RenderPipeline = {
|
|
run(stages, context) {
|
|
for (const stage of stages) stage(context);
|
|
}
|
|
};
|
|
})();
|