diff --git a/source/engine/core/taskrunner.js b/source/engine/core/taskrunner.js index eb87bde..6e1cb8c 100644 --- a/source/engine/core/taskrunner.js +++ b/source/engine/core/taskrunner.js @@ -7,17 +7,17 @@ export class TaskRunner this.callbacks = null; } - Run (count, callbacks) - { + Run (count, callbacks) + { this.count = count; - this.current = 0; + this.current = 0; this.callbacks = callbacks; if (count === 0) { this.TaskReady (); } else { this.RunOnce (); } - } + } RunBatch (count, batchCount, callbacks) {