Purged deprecated MobType and MobSpawner

This commit is contained in:
Dinnerbone
2011-03-07 16:29:03 +00:00
parent 9e5ec989ad
commit 9da67772a8
4 changed files with 11 additions and 129 deletions

View File

@@ -1,54 +0,0 @@
package org.bukkit.block;
import org.bukkit.entity.MobType;
/**
* Represents a mob spawner.
*
* @author sk89q
*
* @deprecated Use CreatureSpawner instead.
*/
public interface MobSpawner extends BlockState {
/**
* Get the spawner's mob type.
*
* @return
*/
public MobType getMobType();
/**
* Set the spawner mob type.
*
* @param mobType
*/
public void setMobType(MobType mobType);
/**
* Get the spawner's mob type.
*
* @return
*/
public String getMobTypeId();
/**
* Set the spawner mob type.
*
* @param mobType
*/
public void setMobTypeId(String mobType);
/**
* Get the spawner's delay.
*
* @return
*/
public int getDelay();
/**
* Set the spawner's delay.
*
* @param delay
*/
public void setDelay(int delay);
}