| 5 | */ |
| 6 | |
| 7 | export class ImmutableTimer { |
| 8 | |
| 9 | /** |
| 10 | * The current delta time in seconds. |
| 11 | * |
| 12 | * @type {Number} |
| 13 | */ |
| 14 | |
| 15 | getDelta() { return NaN; } |
| 16 | |
| 17 | /** |
| 18 | * The elapsed time in seconds. |
| 19 | * |
| 20 | * @type {Number} |
| 21 | */ |
| 22 | |
| 23 | getElapsed() { return NaN; } |
| 24 | |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…