Files
Mindustry/core/src/mindustry/game/GameStats.java
2021-08-18 16:39:20 -04:00

17 lines
505 B
Java

package mindustry.game;
public class GameStats{
/** Enemy (red team) units destroyed. */
public int enemyUnitsDestroyed;
/** Total waves lasted. */
public int wavesLasted;
/** Friendly buildings fully built. */
public int buildingsBuilt;
/** Friendly buildings fully deconstructed. */
public int buildingsDeconstructed;
/** Friendly buildings destroyed. */
public int buildingsDestroyed;
/** Total units created by any means. */
public int unitsCreated;
}