(object: Partial<GameSettings> | null = null)
| 1208 | } |
| 1209 | |
| 1210 | static settings (object: Partial<GameSettings> | null = null): GameSettings { |
| 1211 | if (object !== null) { |
| 1212 | this._settings = merge (this._settings, object); |
| 1213 | } |
| 1214 | |
| 1215 | return this._settings; |
| 1216 | } |
| 1217 | |
| 1218 | /** |
| 1219 | * Get a preference value by key |
no outgoing calls
no test coverage detected