()
| 34 | } |
| 35 | |
| 36 | public load(): void{ |
| 37 | this.setAccumulated(Saving.loadNumber(this.savingPrefix + "Accumulated")); |
| 38 | this.setCurrent(Saving.loadNumber(this.savingPrefix + "Current")); |
| 39 | this.setMax(Saving.loadNumber(this.savingPrefix + "Max")); |
| 40 | } |
| 41 | |
| 42 | public save(): void{ |
| 43 | Saving.saveNumber(this.savingPrefix + "Accumulated", this.getAccumulated()); |
nothing calls this directly
no test coverage detected