9 lines
170 B
Java
9 lines
170 B
Java
package gg.malloc.defense.model;
|
|
|
|
import org.bukkit.entity.EntityType;
|
|
import org.bukkit.entity.Entity;
|
|
|
|
public interface Spawner {
|
|
Entity spawnMob(EntityType type);
|
|
}
|