Multiply a value. @webref floatdict:method @webBrief Multiply a value
(String key, float amount)
| 454 | * @webBrief Multiply a value |
| 455 | */ |
| 456 | public void mult(String key, float amount) { |
| 457 | int index = index(key); |
| 458 | if (index != -1) { |
| 459 | values[index] *= amount; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | |
| 464 | /** |