Reimplement wave AI, split out some UI code into a ui module, update TODO

This commit is contained in:
2022-05-10 05:28:01 +02:00
parent 2f63695ee9
commit 75debe1905
15 changed files with 588 additions and 248 deletions

View File

@@ -1,8 +1,9 @@
package gg.malloc.defense.model;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Entity;
import org.bukkit.entity.LivingEntity;
public interface Spawner {
Entity spawnMob(EntityType type);
LivingEntity spawnMob(EntityType type);
LivingEntity spawnBombCarrier(EntityType type);
}