mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-23 11:06:14 +01:00
Code cleanup
This commit is contained in:
parent
7d2c9c9240
commit
f1433cfc88
@ -1,12 +1,10 @@
|
||||
package com.garbagemule.MobArena.repairable;
|
||||
|
||||
//import java.io.Serializable;
|
||||
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.block.BlockState;
|
||||
|
||||
public interface Repairable// extends Serializable
|
||||
public interface Repairable
|
||||
{
|
||||
public void repair();
|
||||
|
||||
|
@ -74,41 +74,4 @@ public class RepairableBlock implements Repairable
|
||||
{
|
||||
return z;
|
||||
}
|
||||
|
||||
/*
|
||||
public void setWorld(World world)
|
||||
{
|
||||
this.world = world;
|
||||
}
|
||||
|
||||
public void setType(Material type)
|
||||
{
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public void setId(int id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setData(byte data)
|
||||
{
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public void setX(int x)
|
||||
{
|
||||
this.x = x;
|
||||
}
|
||||
|
||||
public void setY(int y)
|
||||
{
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
public void setZ(int z)
|
||||
{
|
||||
this.z = z;
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user