mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-10-09 00:26:04 +00:00
Test values
This commit is contained in:
@@ -78,20 +78,24 @@ export class GeneralEnemySpawnerSettings {
|
||||
public cooldown = 0;
|
||||
}
|
||||
|
||||
export class WaveEnemySpawnerSettings {
|
||||
export class WaveEnemySpawnerSettings implements ISpawner {
|
||||
public common = new GeneralEnemySpawnerSettings();
|
||||
public enemiesToSpawn = 0;
|
||||
}
|
||||
|
||||
export class CircularEnemySpawnerSettings {
|
||||
export class CircularEnemySpawnerSettings implements ISpawner {
|
||||
public common = new GeneralEnemySpawnerSettings();
|
||||
public enemiesToSpawn = 0;
|
||||
}
|
||||
|
||||
export class IndividualEnemySpawnerSettings {
|
||||
export class IndividualEnemySpawnerSettings implements ISpawner {
|
||||
public common = new GeneralEnemySpawnerSettings();
|
||||
}
|
||||
|
||||
export interface ISpawner {
|
||||
common: GeneralEnemySpawnerSettings;
|
||||
}
|
||||
|
||||
export class EnemySettings {
|
||||
public id = "";
|
||||
public moveType = "";
|
||||
|
Reference in New Issue
Block a user