Enemy lifetime

This commit is contained in:
Martin
2022-12-13 18:56:00 +01:00
parent 7e50e5c672
commit b3e9664351
9 changed files with 64 additions and 45 deletions

View File

@@ -76,7 +76,6 @@ export class GeneralEnemySpawnerSettings {
export class WaveEnemySpawnerSettings {
public common = new GeneralEnemySpawnerSettings();
public enemiesToSpawn = 0;
public waveLifetime = 0;
}
export class CircularEnemySpawnerSettings {
@@ -94,4 +93,7 @@ export class EnemySettings {
public health = 0;
public damage = 0;
public speed = 0;
public lifetime = 0;
public xpReward = 0;
public goldReward = 0;
}