firesOn method

bool firesOn(
  1. int callIndex
)

Whether the storm fires on callIndex (1-based).

Implementation

bool firesOn(int callIndex) => callIndex >= fromCall && callIndex <= toCall;