Purged deprecated MobType and MobSpawner

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-03-07 16:29:03 +00:00
parent 188c435e67
commit de5eddce7d
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);
}