Purged deprecated MobType and MobSpawner
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user