Added boss to sector damage calculations

This commit is contained in:
Anuken
2020-11-27 14:18:09 -05:00
parent 525dc0cd7e
commit d06b32c20b
4 changed files with 32 additions and 2 deletions

View File

@@ -71,7 +71,9 @@ public class SectorInfo{
public boolean shown = false;
/** Special variables for simulation. */
public float sumHealth, sumRps, sumDps, waveHealthBase, waveHealthSlope, waveDpsBase, waveDpsSlope;
public float sumHealth, sumRps, sumDps, waveHealthBase, waveHealthSlope, waveDpsBase, waveDpsSlope, bossHealth, bossDps;
/** Wave where first boss shows up. */
public int bossWave = -1;
/** Counter refresh state. */
private transient Interval time = new Interval();