| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | abstract class AProceduralRevolver extends ARevolver implements IFrameRevolver |
||
| 15 | { |
||
| 16 | protected IFrame $currentFrame; |
||
| 17 | |||
| 18 | public function __construct( |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function next(float $dt = null): void |
||
| 27 | { |
||
| 28 | $this->currentFrame = $this->procedure->update($dt); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function current(): IFrame |
||
| 34 | } |
||
| 35 | } |
||
| 36 |