package net.minecraft.src.weasel;

import net.minecraft.src.NBTTagCompound;
import net.minecraft.src.PC_INBT;

public abstract class WeaselObject implements PC_INBT {

	private WeaselObjectType type = null;

	public WeaselObject(WeaselObjectType type) {

	}

	@Override
	public NBTTagCompound writeToNBT(NBTTagCompound tag) {
		tag.setInteger("type", type.getIndex());
		return tag;
	}
}
