|
package projectzombie.entity;
|
|
|
|
import projectzombie.inventory.IInventoryClothing;
|
|
import projectzombie.inventory.InventoryArmor;
|
|
import projectzombie.inventory.InventoryClothing;
|
|
|
|
public interface EntityHasClothing {
|
|
public IInventoryClothing getInventoryClothing();
|
|
}
|