17 lines
505 B
Java
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;
|
|
}
|