* @param {Function} animationFn Function that returns a run function, animation tween * and a function to update the state of the lank.
(animationFn)
| 799 | * and a function to update the state of the lank. |
| 800 | */ |
| 801 | constructor (animationFn) { |
| 802 | super() |
| 803 | this.animationFn = animationFn |
| 804 | } |
| 805 | |
| 806 | run () { |
| 807 | const { run, animation, lankStateChanged } = this.animationFn() |
nothing calls this directly
no outgoing calls
no test coverage detected