package org.bukkit;

/**
 * Represents the different types of skulls.
 */
public enum SkullType {
    SKELETON,
    WITHER,
    ZOMBIE,
    PLAYER,
    CREEPER;
}
