21 lines
510 B
Java
21 lines
510 B
Java
package mods.tinker.tconstruct.player;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
import cpw.mods.fml.common.FMLCommonHandler;
|
|
|
|
public class TPlayerStats
|
|
{
|
|
public WeakReference<EntityPlayer> player;
|
|
public int level;
|
|
public int health;
|
|
public int hunger;
|
|
public boolean beginnerManual;
|
|
public boolean materialManual;
|
|
public boolean smelteryManual;
|
|
public ArmorExtended armor;
|
|
}
|