()
| 35 | |
| 36 | // Public methods |
| 37 | public buy(): void{ |
| 38 | // We tell the saving system that this item is bought |
| 39 | Saving.saveBool(this.savingBool, true); |
| 40 | } |
| 41 | |
| 42 | public canBeBought(): boolean{ // Return true if we can buy the item, else return false |
| 43 | // If it's already bought, we return false |