deleted some unused classes
This commit is contained in:
parent
b5fe074b3d
commit
603f735217
3 changed files with 0 additions and 48 deletions
|
@ -1,10 +0,0 @@
|
|||
package net.machinemuse.powersuits.control;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
|
||||
public interface IBindableControl {
|
||||
public void onActivate(EntityPlayer player);
|
||||
|
||||
public void onDeactivate(EntityPlayer player);
|
||||
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
package net.machinemuse.powersuits.control;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
|
||||
public class OpenGuiControl implements IBindableControl {
|
||||
|
||||
@Override
|
||||
public void onActivate(EntityPlayer player) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeactivate(EntityPlayer player) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
package net.machinemuse.powersuits.control;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
|
||||
public class ToggleControl implements IBindableControl {
|
||||
|
||||
@Override
|
||||
public void onActivate(EntityPlayer player) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeactivate(EntityPlayer player) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue