public enum HackTickHandler extends java.lang.Enum<HackTickHandler>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static HackTickHandler |
instance() |
void |
trackBlock(net.minecraft.world.World world,
net.minecraft.util.math.BlockPos pos,
IHackableBlock iHackable) |
void |
trackEntity(net.minecraft.entity.Entity entity,
IHackableEntity iHackable) |
static HackTickHandler |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HackTickHandler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
worldTick(net.minecraftforge.event.TickEvent.WorldTickEvent event) |
public static final HackTickHandler INSTANCE
public static HackTickHandler[] values()
for (HackTickHandler c : HackTickHandler.values()) System.out.println(c);
public static HackTickHandler valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static HackTickHandler instance()
public void worldTick(net.minecraftforge.event.TickEvent.WorldTickEvent event)
public void trackBlock(net.minecraft.world.World world,
net.minecraft.util.math.BlockPos pos,
IHackableBlock iHackable)
public void trackEntity(net.minecraft.entity.Entity entity,
IHackableEntity iHackable)